c++中求字符串长度的代码
时间: 2023-12-30 09:21:59 浏览: 109
C语言中求字符串长度的函数的几种实现方法
5星 · 资源好评率100%
以下是两种C++中求字符串长度的代码:
1.使用string类的length()函数
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "Hello World!";
int len = str.length();
cout << "The length of the string is: " << len << endl; // 输出:The length of the string is: 12
return 0;
}
```
2.使用C语言库函数strlen()
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[] = "Hello World!";
int len = strlen(str);
cout << "The length of the string is: " << len << endl; // 输出:The length of the string is: 12
return 0;
}
```
阅读全文