本文主要是介绍字符串之strlen实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include <iostream>#include<assert.h>
#include<stdlib.h>
#include<string.h>
using namespace std;
int strlenT(const char * s)
{
//断言判断s为非空
assert(s!=NULL);
int len=0;
while(*s!='\0')
{
s++;
len++;
}
return len;
}
int main()
{
char *s1="hello";
cout<<strlenT(s1)<<endl;
cout<<strlen(s1)<<endl;
char *s2="";
cout<<strlenT(s2)<<endl;
return 0;
}
输出结果:
5
5
0
这篇关于字符串之strlen实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!