您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“C++怎么使用命名轉(zhuǎn)換”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
ES.49:如果必須進(jìn)行類型轉(zhuǎn)換,使用命名轉(zhuǎn)換
可讀性。避免錯(cuò)誤。命名轉(zhuǎn)換比C風(fēng)格轉(zhuǎn)換或函數(shù)形式轉(zhuǎn)換更明確,允許編譯器捕捉更多錯(cuò)誤。
The named casts are:
命名轉(zhuǎn)換包括:
static_cast
靜態(tài)轉(zhuǎn)換
const_cast
常量轉(zhuǎn)換
reinterpret_cast
重新解釋轉(zhuǎn)換
dynamic_cast
動(dòng)態(tài)轉(zhuǎn)換
std::move // move(x) is an rvalue reference to x
移動(dòng)//move(x)是x的右值引用
std::forward // forward<T>(x) is an rvalue or an lvalue reference to x depending on T
值性轉(zhuǎn)遞//根據(jù)T的類型,forward<T>(x)是左值或右值引用
gsl::narrow_cast // narrow_cast<T>(x) is static_cast<T>(x)
窄化轉(zhuǎn)換//narrow_cast<T>(x)就是static_cast<T>(x)
gsl::narrow // narrow<T>(x) is static_cast<T>(x) if static_cast<T>(x) == x or it throws narrowing_error
窄化轉(zhuǎn)換(拋出異常)//如果static_cast<T>(x) == x,narrow<T>(x) 就是 static_cast<T>(x),否則拋出異常
class B { /* ... */ };
class D { /* ... */ };
template<typename D> D* upcast(B* pb)
{
D* pd0 = pb; // error: no implicit conversion from B* to D*
D* pd1 = (D*)pb; // legal, but what is done?
D* pd2 = static_cast<D*>(pb); // error: D is not derived from B
D* pd3 = reinterpret_cast<D*>(pb); // OK: on your head be it!
D* pd4 = dynamic_cast<D*>(pb); // OK: return nullptr
// ...
}
示例是從實(shí)際代碼中收集的的錯(cuò)誤集合,這段代碼的前提是D過(guò)去繼承于B,但有人重構(gòu)了繼承關(guān)系。C風(fēng)格轉(zhuǎn)換的危險(xiǎn)性來(lái)自它可以是任何類型的轉(zhuǎn)換,這抹殺了任何防錯(cuò)保護(hù)的可能性(無(wú)論是現(xiàn)在還是未來(lái))。
Note(注意)
如果希望在類型之間進(jìn)行無(wú)損轉(zhuǎn)換(例如從float到double,或者從int32到int64),可以考慮轉(zhuǎn)而使用大括號(hào)初始化。
double d {some_float};
int64_t i {some_int32};
這種方式一方面明確了類型轉(zhuǎn)換的意圖,另一方面可以防止轉(zhuǎn)換時(shí)損失精度。(例如,在如代碼所示的情況下,如果使用double值初始化float變量,會(huì)發(fā)生編譯錯(cuò)誤)
Note(注意)
reinterpret_cast can be essential, but the essential uses (e.g., turning a machine address into pointer) are not type safe:
reinterpret_cast是必不可少的,但是這種必要的用法(例如,將機(jī)器地址轉(zhuǎn)換為指針)不是類型安全的。
auto p = reinterpret_cast<Device_register>(0x800); // inherently dangerous
Flag C-style and functional casts.
對(duì)C風(fēng)格和函數(shù)形式轉(zhuǎn)換進(jìn)行提醒
The type profile bans reinterpret_cast.
類型規(guī)則群組禁止reinterpret_cast.
The type profile warns when using static_cast between arithmetic types.
類型規(guī)則群組對(duì)在算數(shù)類型之間進(jìn)行轉(zhuǎn)換時(shí)使用static_cast的情況進(jìn)行警告。
譯者注:
C風(fēng)格轉(zhuǎn)換:b = int(a);
函數(shù)形式轉(zhuǎn)換:b=int(a);
“C++怎么使用命名轉(zhuǎn)換”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。