当前位置:首页 > Software > C++ > 正文内容

数据类型及其占用空间

chanra1n5年前 (2020-10-28)C++5582
#include<iostream>
using namespace std;
int main()
{
	cout << "The size of int is " <<sizeof(int) <<endl;
	cout << "The size of short is " <<sizeof(short) <<endl;
	cout << "The size of long is " <<sizeof(long) <<endl;
	cout << "The size of bool is " <<sizeof(bool) <<endl;
	cout << "The size of char is " <<sizeof(char) <<endl;
	cout << "The size of float is " <<sizeof(float) <<endl;
	cout << "The size of double is " <<sizeof(double) <<endl;
	return 0;
}

运行的结果是

The size of int is 4
The size of short is 2
The size of long is 4
The size of bool is 1
The size of char is 1
The size of float is 4
The size of double is 8

单位是字节

扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:https://myfpga.cn/index.php/post/155.html

分享给朋友:

“数据类型及其占用空间” 的相关文章

C++类和对象

C++类和对象

    首先我们先来了解一下类类是一种将抽象转化为用户定义类型的c++工具,它将数据表示和操纵数据的方法组合成一个整洁的包。接下来定义类。一般来说,类规范由两个部分组成。类声明:以数据成员的方式描述数据部分,以成员函数的方式描述公有接口。(对于类,我们说公共接口。公众"public"时使用类的程序,...

变量作用域

变量作用域

#include<iostream> void print(); int main() { char a=0; for(a=0;a<20;a++) print(); return 0;  }  v...

Break和Continue的区别

Break和Continue的区别

#include<iostream>  using namespace std; int main() { int x=0; for(x=0;x<10;x++) { if(x==3) break;...