码迷,mamicode.com
首页 > 其他好文 > 详细

数据类型所占用内存的大小

时间:2017-05-12 10:17:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:架构   类型   bytes   内存   c++   我的电脑   data   例子   and   

数据类型所占的大小是由编译器和你电脑的架构共同决定的。

举个例子: 定义一个int x=0;

那么怎么去查看到底这个int型的x变量占用的内存大小呢。

c++中提供了sizeof这个函数。

我们可以打印sizeof(x)去验证,我的电脑上是占用4个bytes。

 

You may be surprised to find that the size of a given data type is dependent on the compiler and/or the computer architectureint!

数据类型所占用内存的大小

标签:架构   类型   bytes   内存   c++   我的电脑   data   例子   and   

原文地址:http://www.cnblogs.com/qqtuywer/p/6844183.html

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