版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、CPrimer中文版中文版(第4版)(中英對(duì)照中英對(duì)照)三5.12.5.12.TypeTypeConversionsConversions5.12.5.12.類(lèi)型轉(zhuǎn)換類(lèi)型轉(zhuǎn)換Thetypeoftheoper(s)determinewhetheranexpressionislegaliftheexpressionislegaldeterminesthemeaningoftheexpression.HoweverinCsometypesar
2、erelatedtooneanother.Whentwotypesarerelatedwecanuseanobjectvalueofonetypewhereanoperoftherelatedtypeisexpected.Twotypesarerelatedifthereisaconversionconversionbetweenthem.表達(dá)式是否合法取決于操作數(shù)的類(lèi)型,而且合法的表達(dá)式其含義也由其操作數(shù)類(lèi)型決定。但是,在C中,某些類(lèi)
3、型之間存在相關(guān)的依賴(lài)關(guān)系。若兩種類(lèi)型相關(guān),則可在需要某種類(lèi)型的操作數(shù)位置上,使用該類(lèi)型的相關(guān)類(lèi)型對(duì)象或值。如果兩個(gè)類(lèi)型之間可以相互轉(zhuǎn)換轉(zhuǎn)換,則稱(chēng)這兩個(gè)類(lèi)型相關(guān)。Asanexampleconsider考慮下列例子:intival=0ival=3.5413typicallycompileswithawarningwhichassigns6toival.ival的值為6。Theoperstotheadditionoperatarevalues
4、oftwodifferenttypes:3.541isaliteraloftypedouble3isaliteraloftypeint.RatherthanattempttoaddvaluesofthetwodifferenttypesCdefinesasetofconversionstotransfmtheoperstoacommontypebefeperfmingthearithmetic.Theseconversionsareca
5、rriedoutautomaticallybythecompilerwithoutprogrammerinterventionsometimeswithoutprogrammerknowledge.Fthatreasontheyarereferredtoasimplicittypeconversions.首先做加法操作,其操作數(shù)是兩個(gè)不同類(lèi)型的值:3.541是double型的字面值常量,而3則是int型的字面值常量。C并不是把兩個(gè)不同類(lèi)
6、型的值直接加在一起,而是提供了一組轉(zhuǎn)換規(guī)則,以便在執(zhí)行算術(shù)操作之前,將兩個(gè)操作數(shù)轉(zhuǎn)換為同一種數(shù)據(jù)類(lèi)型。這些轉(zhuǎn)換規(guī)則由編譯器自動(dòng)執(zhí)行,無(wú)需程序員介入——有時(shí)甚至不需要程序員了解。因此,它們也被稱(chēng)為隱式類(lèi)型轉(zhuǎn)換。Thebuiltinconversionsamongthearithmetictypesaredefinedtopreserveprecisionifpossible.Mostoftenifanexpressionhasbothin
7、tegralfloatingpointvaluestheintegerisconvertedtofloatingpoint.Inthisadditiontheintegervalue3isconvertedtodouble.Floatingpointadditionisperfmedtheresult6.541isoftypedouble.C定義了算術(shù)類(lèi)型之間的內(nèi)置轉(zhuǎn)換以盡可能防止精度損失。通常,如果表達(dá)式的操作數(shù)分別為整型和浮點(diǎn)型,則
8、整型的操作數(shù)被轉(zhuǎn)換為浮點(diǎn)型。本例中,整數(shù)3被轉(zhuǎn)換為double類(lèi)型,然后執(zhí)行浮點(diǎn)類(lèi)型的加法操作,得double類(lèi)型的結(jié)果6.541。Thenextstepistoassignthatdoublevaluetoivalwhichisanint.Inthecaseofassignmentthetypeofthelefthoperdominatesbecauseitisnotpossibletochangethetypeoftheobject
9、onthelefthside.Whentheleftrighthtypesofanassignmentdifferthe在第六章中學(xué)習(xí))。?Anexpressionusedtoinitializeassigntoavariableisconvertedtothetypeofthevariable:用一表達(dá)式初始化某個(gè)變量,或?qū)⒁槐磉_(dá)式賦值給某個(gè)變量,則該表達(dá)式被轉(zhuǎn)換為該變量的類(lèi)型:intival=3.143.14convertedtoi
10、ntintipip=0theint0convertedtoanullpointeroftypeintInadditionaswellseeinChapter7implicitconversionsalsooccurduringfunctioncalls.另外,在函數(shù)調(diào)用中也可能發(fā)生隱式類(lèi)型轉(zhuǎn)換,我們將在第七章學(xué)習(xí)這方面的內(nèi)容。5.12.2.5.12.2.TheTheArithmeticArithmeticConversionsConve
11、rsions5.12.2.5.12.2.算術(shù)轉(zhuǎn)換算術(shù)轉(zhuǎn)換Thelanguagedefinesasetofconversionsamongthebuiltintypes.Amongthesethemostcommonarethearithmeticarithmeticconversionsconversionswhichensurethatthetwoopersofabinaryoperatsuchasanarithmeticlogica
12、loperatareconvertedtoacommontypebefetheoperatisevaluated.Thatcommontypeisalsotheresulttypeoftheexpression.C語(yǔ)言為內(nèi)置類(lèi)型提供了一組轉(zhuǎn)換規(guī)則,其中最常用的是算術(shù)轉(zhuǎn)換算術(shù)轉(zhuǎn)換。算術(shù)轉(zhuǎn)換保證在執(zhí)行操作之前,將二元操作符(如算術(shù)或邏輯操作符)的兩個(gè)操作數(shù)轉(zhuǎn)換為同一類(lèi)型,并使表達(dá)式的值也具有相同的類(lèi)型。Therulesdefineahier
13、archyoftypeconversionsinwhichopersareconvertedtothewidesttypeintheexpression.Theconversionrulesaredefinedsoastopreservetheprecisionofthevaluesinvolvedinamultitypeexpression.Fexampleifoneoperisoftypelongdoublethentheother
14、isconvertedtotypelongdoubleregardlessofwhatthesecondtypeis.算術(shù)轉(zhuǎn)換規(guī)則定義了一個(gè)類(lèi)型轉(zhuǎn)換層次,該層次規(guī)定了操作數(shù)應(yīng)按什么次序轉(zhuǎn)換為表達(dá)式中最寬的類(lèi)型。在包含多種類(lèi)型的表達(dá)式中,轉(zhuǎn)換規(guī)則要確保計(jì)算值的精度。例如,如果一個(gè)操作數(shù)的類(lèi)型是longdouble,則無(wú)論另一個(gè)操作數(shù)是什么類(lèi)型,都將被轉(zhuǎn)換為longdouble。Thesimplestkindsofconversionare
15、integralintegralpromotionspromotions.Eachoftheintegraltypesthataresmallerthanintsignedunsignedshtunsignedshtispromotedtointifallpossiblevaluesofthattypefitinanint.Otherwisethevalueispromotedtounsignedint.Whenboolvaluesar
16、epromotedtointafalsevaluepromotestozerotruetoone.最簡(jiǎn)單的轉(zhuǎn)換為整型提升整型提升:對(duì)于所有比int小的整型,包括、signed、unsigned、sht和unsignedsht,如果該類(lèi)型的所有可能的值都能包容在int內(nèi),它們就會(huì)被提升為int型,否則,它們將被提升為unsignedint。如果將bool值提升為int,則false轉(zhuǎn)換為0,而true則轉(zhuǎn)換為1。ConversionsCo
17、nversionsbetweenbetweenSignedSignedUnsignedUnsignedTypesTypes有符號(hào)與無(wú)符號(hào)類(lèi)型之間的轉(zhuǎn)換有符號(hào)與無(wú)符號(hào)類(lèi)型之間的轉(zhuǎn)換Whenanunsignedvalueisinvolvedinanexpressiontheconversionrulesaredefinedtopreservethevalueoftheopers.Conversionsinvolvingunsignedope
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 眾賞文庫(kù)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- c++primer中文版第4版中英對(duì)照一
- c++ primer plus (第6版) 中文版編程練習(xí)答案
- c++ primer plus (第6版) 中文版編程練習(xí)答案
- c_primer_plus(第五版)中文版課后編程題全解
- 勞務(wù)-服務(wù)協(xié)議(中英對(duì)照版)
- 戰(zhàn)略合作框架協(xié)議中英對(duì)照版
- 《交易心理分析》中英對(duì)照word版
- deap使用說(shuō)明中英對(duì)照版
- 西蒙赫金通信系統(tǒng)第4版中文版答案
- epa3540c中文版
- 《真正的海龜交易者》中英對(duì)照版
- ted 演講-永不放棄(中英對(duì)照版)
- 《走進(jìn)我的交易室》中英對(duì)照版
- c中文版說(shuō)明書(shū)
- cet4英文諺語(yǔ)中英對(duì)照整理集合版
- 馬云紐約演講全文中英對(duì)照版
- andrewstanenbaum計(jì)算機(jī)網(wǎng)絡(luò)(第4版)習(xí)題答案(中文版)
- 娜塔莉波特曼哈佛畢業(yè)演講中英對(duì)照版
- 肖像權(quán)許可使用合同中英對(duì)照版
- 中文版樣板
評(píng)論
0/150
提交評(píng)論