C++sizeof 运算符
sizeof 是一个关键字,它是一个编译时运算符,用于判断变量或数据类型的字节大小
sizeof 运算符可用于获取类、结构、共用体和其他用户自定义数据类型的大小
sizeof 的语法格式如下
sizeof (data type)
- data type 是要计算大小的数据类型,包括类、结构、共用体和其他用户自定义数据类型
范例 : C++ 中 sizeof 的用法
/** * file: main.cpp * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <iostream> using namespace std; int main() { cout << "Size of char : " << sizeof(char) << endl; cout << "Size of int : " << sizeof(int) << endl; cout << "Size of short int : " << sizeof(short int) << endl; cout << "Size of long int : " << sizeof(long int) << endl; cout << "Size of float : " << sizeof(float) << endl; cout << "Size of double : " << sizeof(double) << endl; cout << "Size of wchar_t : " << sizeof(wchar_t) << endl; return 0; }
编译运行以上范例,输出结果如下:
$ g++ main.cpp && ./a.out Size of char : 1 Size of int : 4 Size of short int : 2 Size of long int : 8 Size of float : 4 Size of double : 8 Size of wchar_t : 4