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进行动态类型检查。