c++string计算长度
时间: 2024-05-25 21:07:04 浏览: 105
C++_String
以下是两种C++获取string字符串长度的方法:
1. 使用length()方法[^1]
```cpp
#include <string>
#include <iostream>
using namespace std;
int main() {
string str = "my string";
cout << str.length() << endl; // 输出:9
return 0;
}
```
2. 使用size()方法
```cpp
#include <string>
#include <iostream>
using namespace std;
int main() {
string str = "Test string";
cout << str.size() << endl; // 输出:11
return 0;
}
```
阅读全文