#|c++中的四种类型转换

在c++当中强制类型转换分为4种,他们都以cast结尾。
使用方法:强制类型转换名(express)
【#|c++中的四种类型转换】一:static_cast属于静态转换,编译时就会进行类型转换的检查。

#include #include using namespace std; class A { public: }; class B :public A { public: }; int main() { /*double转int*/ double f = 100.34f; int i = static_cast(f); /*子类转父类*/ B obj2; A obj1 = static_cast(obj2); /*void*与其它的指针类型转换*/ int x = 10; int* p = &x; void* q = static_cast(p); int* pq = static_cast(q); double f2 = 100.0; double* pf = &f2; //int* u = static_cast(pf); 无效 }

二:dynamic_cast,在运行时期进行的类型识别和检查。主要用来进行父类转成子类类型。
三:const_cast去除指针或者引用的const属性,编译时的类型转换检查
#include #include using namespace std; int main() { const int ci = 90; //int ci2 = const_cast(ci); //不是指针和引用,错误 const int* pai = &ci; int* pai2 = const_cast(pai); *pai2 = 30; //不要这么干,实际上这里还是const cout << ci << endl; //90 cout << *pai << endl; //30 cout << *pai2 << endl; //30 }

四:reinterpret_cast属于编译时的类型转换检查。一般是怎么转都可以,但是存在危险,比如int转string等。

    推荐阅读