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 运算符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用