码迷,mamicode.com
首页 > 编程语言 > 详细

C++中整数的存储方式

时间:2014-12-23 15:38:01      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:c++

话不多说,直接上代码。

 

#include <iostream>
using namespace std;

int main()
{
    unsigned int *data = new unsigned;
    unsigned char *byte;
    *data = 0x000000ff;
    cout<<*data<<endl;
    
    byte = (unsigned char *)data;
    
    //低位存储在低地址 
    for(int i=0;i<4;++i)
    {
        cout<<(int)(*(byte+i))<<endl;
    }
    system("pause");
    return 0;
}


 

运行结果:

 技术分享

C++中整数的存储方式

标签:c++

原文地址:http://blog.csdn.net/wxb1553725576/article/details/42102681

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!