static_cast是C++中的一種類型轉換操作符,用于將一個表達式轉換為指定的類型。它可以用于以下幾種轉換操作:
Base* basePtr = new Derived();
Derived* derivedPtr = static_cast<Derived*>(basePtr);
int intValue = 10;
double doubleValue = static_cast<double>(intValue);
enum Color { RED, GREEN, BLUE };
int colorValue = static_cast<int>(RED);
int* intValuePtr = new int(5);
intptr_t intValue = static_cast<intptr_t>(intValuePtr);
需要注意的是,static_cast在進行轉換時,不會進行運行時類型檢查,因此如果進行不安全的轉換,可能導致程序出現未定義的行為。在進行類類型之間的轉換時,如果沒有繼承關系,應該使用dynamic_cast進行動態類型檢查。