本篇內(nèi)容介紹了“C++怎么避免有損算數(shù)轉(zhuǎn)換”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的衡山網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
ES.46:避免有損(窄化,截短)算數(shù)轉(zhuǎn)換
A narrowing conversion destroys information, often unexpectedly so.
窄化轉(zhuǎn)換破壞信息,通常不是期待的動作。
Example, bad(反面示例)
A key example is basic narrowing:
主要的示例說明窄化的基本情況:
double d = 7.9;
int i = d; // bad: narrowing: i becomes 7
i = (int) d; // bad: we're going to claim this is still not explicit enough
void f(int x, long y, double d)
{
char c1 = x; // bad: narrowing
char c2 = y; // bad: narrowing
char c3 = d; // bad: narrowing
}
準(zhǔn)則支持庫提供了一個(gè)narrow_cast操作,可以用來表明窄化是可接受的;一個(gè)narrow(“如果發(fā)生窄化轉(zhuǎn)換”)操作,它可以在丟失了任何信息時(shí)拋出異常。
i = narrow_cast(d); // OK (you asked for it): narrowing: i becomes 7
i = narrow(d); // OK: throws narrowing_error
We also include lossy arithmetic casts, such as from a negative floating point type to an unsigned integral type:
這兩個(gè)操作也可以處理有損算數(shù)轉(zhuǎn)換,例如從負(fù)浮點(diǎn)數(shù)轉(zhuǎn)換為無符號整數(shù)的情況。
double d = -7.9;
unsigned u = 0;
u = d; // BAD
u = narrow_cast(d); // OK (you asked for it): u becomes 4294967289
u = narrow(d); // OK: throws narrowing_error
實(shí)現(xiàn)良好的代碼分析器可以檢出所有的窄化轉(zhuǎn)換。但是標(biāo)識所有的窄化轉(zhuǎn)換會導(dǎo)致大量的假陽性結(jié)果。建議:
Flag all floating-point to integer conversions (maybe only float->char and double->int. Here be dragons! we need data).
標(biāo)記所有浮點(diǎn)數(shù)到整數(shù)的轉(zhuǎn)換(或許只需要標(biāo)記float到char和double到int。 都有可能! 我們需要數(shù)據(jù))
Flag all long->char (I suspect int->char is very common. Here be dragons! we need data).
標(biāo)記所有l(wèi)ong到char的轉(zhuǎn)換(我懷疑int到char的轉(zhuǎn)換很普遍。都有可能! 我們需要數(shù)據(jù))
Consider narrowing conversions for function arguments especially suspect.
函數(shù)參數(shù)的窄化轉(zhuǎn)換尤其可疑。
“C++怎么避免有損算數(shù)轉(zhuǎn)換”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!