C++11引入了几种新的类型转换函数以及改进了已有的类型转换操作符。以下是C++11中可用的各种类型转换函数:
static_cast
:用于显式转换一个类型为另一个类型,例如基本类型之间的转换、void指针到其他指针类型的转换等。int intValue = 42;
double doubleValue = static_cast<double>(intValue);
dynamic_cast
:用于在继承关系中执行安全的向下转型。如果转型失败,返回一个空指针。class Base { };
class Derived : public Base { };
Base* basePtr = new Derived();
Derived* derivedPtr = dynamic_cast<Derived*>(basePtr);
if (derivedPtr != nullptr) {
// 向下转型成功
}
const_cast
:用于添加或移除const或volatile修饰符。const int constValue = 42;
int* nonConstPtr = const_cast<int*>(&constValue);
reinterpret_cast
:用于进行底层的重新解释转换,例如将指针转换为整数类型。int intValue = 42;
int* intPtr = reinterpret_cast<int*>(intValue);
typeid
:用于获取表达式的类型信息,返回一个std::type_info
对象。int intValue = 42;
const std::type_info& type = typeid(intValue);
这些类型转换函数提供了不同的功能和用途,在使用时需要注意遵循安全和合理的转换规则,以避免潜在的错误和未定义行为。