标签:
1 #include <iostream> 2 #include <string.h> 3 using namespace std; 4 5 int main() 6 { 7 char a[]="12345"; 8 cout<<strlen(a)<<“ ”; 9 10 11 string s1="1234"; 12 cout<<sizeof(s1); 13 14 return 0; 15 }
strlen 需要头文件 string.h
参数只能是字符数组 而不是string
string 用 sizeof 计算长度
上面程序输出为 5 4
标签:
原文地址:http://www.cnblogs.com/Ro0kie/p/5476393.html