c++primer中文版第4版中英对照三

c++primer中文版第4版中英对照三

ID:31211265

大小:2.34 MB

页数:191页

时间:2019-01-07

c++primer中文版第4版中英对照三_第1页
c++primer中文版第4版中英对照三_第2页
c++primer中文版第4版中英对照三_第3页
c++primer中文版第4版中英对照三_第4页
c++primer中文版第4版中英对照三_第5页
资源描述:

《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

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。