C++四种类型转换

C++依然存在隐式类型转换
int num = 5;
double b = num;
不安全,无类型检查
强制类型转换运算符(不是一个函数):
static_cast
double b =static_cast(num);、转换成double类型
char ch = static_cast(num);

void与任意类型指针之间的转换
int
p_num = #
void* ptr = static_cast<void*>(p_num);
int* p2 = static_cast<int >(ptr);
int
p3 = (int*)ptr;

父类与子类之间的转换

const_cast
去除指针和引用的const属性
const int count = 5;
const int* p count = &count;
int* p_count2 = const_cast<int *>(p_count);
cout << count << endl;

去除引用
const int& r_count = count;
int& r_count2 = const_cast<int &>(r_count);

reinterpret_cast
任意指针类型转换
p_num = reinterpret_cast<int *>(p_ch);
强制类型转换:不安全

dynamic_cast
RTTI运行时类型信息

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

洋芋辰丶

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值