在C++中,类型转换主要有以下几种方法:
static_cast
关键字进行类型转换,适用于基本数据类型之间的转换,以及具有继承关系的类之间的转换。int a = 10;
double b = static_cast<double>(a);
dynamic_cast
关键字进行类型转换,用于类之间的多态类型转换,只能用于具有虚函数的类。class Base {
public:
virtual void func() {}
};
class Derived : public Base {};
Base* basePtr = new Derived;
Derived* derivedPtr = dynamic_cast<Derived*>(basePtr);
reinterpret_cast
关键字进行类型转换,不进行类型检查,直接将一个指针或引用转换为另一种类型。int* ptr = new int(10);
char* charPtr = reinterpret_cast<char*>(ptr);
const_cast
关键字进行类型转换,用于去除const属性,只能用于指针或引用。const int a = 10;
int& b = const_cast<int&>(a);
int a = 10;
double b = (double)a;