c++判断字符串长度
时间: 2023-12-23 10:03:08 浏览: 220
c++字符串长度
5星 · 资源好评率100%
可以使用标准库中的 `strlen` 函数来获取字符串的长度,该函数的头文件为 `<cstring>`。示例代码如下:
```cpp
#include <iostream>
#include <cstring>
int main() {
std::string str = "hello world";
std::cout << "The length of the string is: " << strlen(str.c_str()) << std::endl;
return 0;
}
```
输出结果为:
```
The length of the string is: 11
```
阅读全文