首页 > 编程语言 > 详细

C++ reinterpret_cast使用

时间:2014-02-23 17:56:26      阅读:495      评论:0      收藏:0      [点我收藏+]
#include<iostream>

using namespace std;

int main(){
	int i;
	float f=-6.9072;

	//将float指针转换为字符指针
	unsigned char* p=reinterpret_cast<unsigned char*>(&f);
	cout<<hex;//print bytes of f in hex

	for(i=0; i<sizeof(float);i++)
		cout<<static_cast<int>(p[i])<<endl;
}

C++ reinterpret_cast使用

原文:http://blog.csdn.net/slience_perseverance/article/details/19724931

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!