资源描述:
《c++primer中文版第4版中英对照三》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、C++Primer中文版(第4版)(中英对照)三5.12.TypeConversions5.12.类型转换Thetypeoftheoperand(s)determinewhetheranexpressionislegaland,iftheexpressionislegal,determinesthemeaningoftheexpression.However,inC++sometypesarerelatedtooneanother.Whentwotypesarerelated,wecanuseanobjectorvalueofon
2、etypewhereanoperandoftherelatedtypeisexpected.Twotypesarerelatedifthereisaconversionbetweenthem.表达式是否合法取决于操作数的类型,而且合法的表达式其含义也由其操作数类型决定。但是,在C++中,某些类型之间存在相关的依赖关系。若两种类型相关,则可在需要某种类型的操作数位置上,使用该类型的相关类型对象或值。如果两个类型之间可以相互转换,则称这两个类型相关。Asanexample,consider考虑下列例子:intival=0;ival=3
3、.541+3;//typicallycompileswithawarningwhichassigns6toival.ival的值为6。Theoperandstotheadditionoperatorarevaluesoftwodifferenttypes:3.541isaliteraloftypedouble,and3isaliteraloftypeint.Ratherthanattempttoaddvaluesofthetwodifferenttypes,C++definesasetofconversionstotransfor
4、mtheoperandstoacommontypebeforeperformingthearithmetic.Theseconversionsarecarriedoutautomaticallybythecompilerwithoutprogrammerinterventionandsometimeswithoutprogrammerknowledge.Forthatreason,theyarereferredtoasimplicittypeconversions.首先做加法操作,其操作数是两个不同类型的值:3.541是doubl
5、e型的字面值常量,而3则是int型的字面值常量。C++并不是把两个不同类型的值直接加在一起,而是提供了一组转换规则,以便在执行算术操作之前,将两个操作数转换为同一种数据类型。这些转换规则由编译器自动执行,无需程序员介入——有时甚至不需要程序员了解。因此,它们也被称为隐式类型转换。Thebuilt-inconversionsamongthearithmetictypesaredefinedtopreserveprecision,ifpossible.Mostoften,ifanexpressionhasbothintegraland
6、floating-pointvalues,theintegerisconvertedtofloating-point.Inthisaddition,theintegervalue3isconvertedtodouble.Floating-pointadditionisperformedandtheresult,6.541,isoftypedouble.C++定义了算术类型之间的内置转换以尽可能防止精度损失。通常,如果表达式的操作数分别为整型和浮点型,则整型的操作数被转换为浮点型。本例中,整数3被转换为double类型,然后执行浮点
7、类型的加法操作,得double类型的结果6.541。Thenextstepistoassignthatdoublevaluetoival,whichisanint.Inthecaseofassignment,thetypeoftheleft-handoperanddominates,becauseitisnotpossibletochangethetypeoftheobjectontheleft-handside.Whentheleft-andright-handtypesofanassignmentdiffer,theright
8、-handsideisconvertedtothetypeoftheleft-handside.Herethedoubleisconvertedtoint.ConvertingadoubletoanintTRuncatesthevalue;thed