c++ string 字符串长度函数
时间: 2023-08-03 09:07:27 浏览: 105
C语言中求字符串长度的函数的几种实现方法
5星 · 资源好评率100%
C++中可以使用`std::string`类来表示字符串,并使用`length()`函数来获取字符串的长度。以下是一个示例代码:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, world!";
int length = str.length();
std::cout << "The length of the string is: " << length << std::endl;
return 0;
}
```
运行以上代码,将输出字符串的长度为:13。
阅读全文