当前位置导航:炫浪网>>网络学院>>编程开发>>C++教程>>C++进阶与实例

对比C++中sizeof与strlen函数的区别

    1. sizeof 操作符的结果类型size_t,它在头文件中typedef为unsigned int类型: typedef unsigned int size_t.

    2. sizeof是是长度运算符, 获得数据类型或是变量的长度,如果是数据类型,则返回数据类型大小,如果是用数组,则返回数组所占空间大小,strlen是计算字符串长度的函数,返回的是实际串长度,以char* 作参数 ,且必须是以'\0'结尾。

    3. sizeof在编译的时候就把计算过,strlen的结果要在运行的时候才能计算出来。

    4. 数组做长度运算符sizeof的参数不退化。数组做函数strlen的参数就退化为指针了,因为数组作为参数传给函数时传的是指针而不是数组,传递的是数组的首地址。

 char* ss = "0123456789";
 cout<<sizeof(ss)<<endl;//4
 cout<<sizeof(*ss)<<endl;//1
 cout<<strlen(ss)<<endl;//10

 char ss1[] =  "0123456789";
 cout<<sizeof(ss1)<<endl;//11
 cout<<sizeof(*ss1)<<endl;//1
 cout<<strlen(ss1)<<endl;//10

 char ss2[100] =  "0123456789";
 cout<<sizeof(ss2)<<endl;//100

 char ss3[] = "0123456789\n";
 cout<<sizeof(ss3)<<endl;//12

 int n[4] = {1,2,3,4};
 cout<<sizeof(n)<<endl;//16

int n1= 1234;
cout<<sizeof(n1)<<endl;//4

相关内容
赞助商链接