在C++中sizeof代表什么?怎么用?

2024-12-16 13:47:04
推荐回答(5个)
回答1:

取你传进参数所占的空间大小

回答2:

sizeof是C++中的一个操作符(operator),简单的说其作用就是返回一个对象或者类型所占的内存字节数。
The sizeof keyword gives the amount of storage, in bytes, associated with a variable or a type (including aggregate types). This keyword returns a value of type size_t.
其返回值类型为size_t,在头文件stddef.h中定义。这是一个依赖于编译系统的值,一般定义为
typedef unsigned int size_t;
世上编译器林林总总,但作为一个规范,它们都会保证char、signed char和unsigned
char的sizeof值为1,毕竟char是我们编程能用的最小数据类型。
sizeof有三种语法形式,如下:
1) sizeof( object ); // sizeof( 对象 );
2) sizeof( type_name ); // sizeof( 类型 );
3) sizeof object; // sizeof 对象;

回答3:

请参考百度百科资料,链接为:http://baike.baidu.com/link?url=qooKYXCRpoA-v6JFNCjhFwpLgmOL5vAnJqhFZzeEZNzx_PAU15hAdoFfoWB3Mthnzhvx0-PV6xKw9xQ8Wu472a#2

回答4:

用来求解数据类型的大小

回答5:

计算某个数据类型(当然包括类),或某个类型变量所占的字节数。

如:sizeof (int);
//Example:
#include
void main()
{
cout< //也可以这样用,不用括号
cout< //还可以这样,计算变量占的字节数
int aa;
cout<
}