一.简介
头文件 | 功能 | |
---|---|---|
strlen() | string.h | 计算给定字符串的(unsigned int型)长度,不包括'\0'在内 |
sizeof() | 无 | 判断数据类型长度符的关键字 |
二.区别
strlen 是一个函数,它用来计算指定字符串 str 的长度,但不包括结束字符(即 null 字符)。sizeof是一个单目运算符,而不是一个函数,它返回的结果包含结束字符 null。
示例代码
#include<string.h>
#include<iostream>
using namespace std;
int main(){
char szTest[]="12345/t/n/0abcd/0";
cout<<strlen(szTest)<<endl;
cout<<sizeof(szTest);
return 0;
}
运行结果
三.注意
函数 strlen 返回的是一个类型为 size_t (即无符号整型)的值,而 size_t 类型绝不可能是负的。因此,例如语句“if(strlen(x)-strlen(y)>=0)”将永远为真。