两种确定字符串字符数的方法
头文件cstring
1.使用strlen
char a[20]=“asdas”;
int len2=strlen(a);
ps:接受c-风格字符串作为参数
2.使用size函数
string str1="cyn"
int len1=str1.size();
cout<<len1<<endl;
ps:这是一个类方法,只能通过其所属类的对象进行调用。
头文件cstring
1.使用strlen
char a[20]=“asdas”;
int len2=strlen(a);
ps:接受c-风格字符串作为参数
2.使用size函数
string str1="cyn"
int len1=str1.size();
cout<<len1<<endl;
ps:这是一个类方法,只能通过其所属类的对象进行调用。