如何查询字符串长度,C++
时间: 2024-01-02 16:02:32 浏览: 52
在C++中,可以使用标准库中的`size()`函数或者字符串类中的`length()`函数来获取字符串的长度。例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str = "hello world";
int len = str.size(); // 或者 str.length();
cout << "字符串长度为:" << len << endl;
return 0;
}
```
输出结果为:
```
字符串长度为:11
```
阅读全文