码迷,mamicode.com
首页 > 编程语言 > 详细

C++ strlen

时间:2016-05-10 02:19:01      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

 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

C++ strlen

标签:

原文地址:http://www.cnblogs.com/Ro0kie/p/5476393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!