C++ sizeof 运算符
2022/2/26 9:51:24
本文主要是介绍C++ sizeof 运算符,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
sizeof 是一个关键字,它是一个编译时运算符,用于判断变量或数据类型的字节大小。
sizeof 运算符可用于获取类、结构、共用体和其他用户自定义数据类型的大小。
使用 sizeof 的语法如下:
sizeof (data type)
其中,data type 是要计算大小的数据类型,包括类、结构、共用体和其他用户自定义数据类型。
请尝试下面的实例,理解 C++ 中 sizeof 的用法。复制并黏贴下面的 C++ 程序到 test.cpp 文件中,编译并运行程序。
#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; }
当上面的代码被编译和执行时,它会产生下列结果,结果会根据使用的机器而不同:
Size of char : 1 Size of int : 4 Size of short int : 2 Size of long int : 4 Size of float : 4 Size of double : 8 Size of wchar_t : 4
示例:
int iDigital = 5; int iList[] = { 1, 2, 4, 3, 5, 6 }; cout << "Size of int : " << sizeof(iDigital) / sizeof(int) << endl; cout << "Size of int : " << sizeof(iList) / sizeof(int) << "\n" << endl; char cKeyLength = 11122221133313211111; char cListKeyLength[] = { 234341, 234232, 43244, 2343, 343425, 3242346 }; cout << "Size of char : " << sizeof(cKeyLength) << endl; cout << "Size of char : " << sizeof(cListKeyLength) << "\n" << 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;
转自:C++ sizeof 运算符 | 菜鸟教程
这篇关于C++ sizeof 运算符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26MATLAB 中 A(7)=[];什么意思?-icode9专业技术文章分享
- 2024-11-26UniApp 中如何实现使用输入法时保持页面列表不动的效果?-icode9专业技术文章分享
- 2024-11-26在 UniApp 中怎么实现输入法弹出时禁止页面向上滚动?-icode9专业技术文章分享
- 2024-11-26WebSocket是什么,怎么使用?-icode9专业技术文章分享
- 2024-11-26页面有多个ref 要动态传入怎么实现?-icode9专业技术文章分享
- 2024-11-26在 UniApp 中实现一个底部输入框的常见方法有哪些?-icode9专业技术文章分享
- 2024-11-26RocketMQ入门指南:搭建与使用全流程详解
- 2024-11-26RocketMQ入门教程:轻松搭建与使用指南
- 2024-11-26手写RocketMQ:从入门到实践的简单教程
- 2024-11-25【机器学习(二)】分类和回归任务-决策树(Decision Tree,DT)算法-Sentosa_DSML社区版