c++中求string数组长度
时间: 2024-03-14 12:41:50 浏览: 160
CC++中获取数组的长度.pdf
在C++中,可以使用`size()`函数或者`length()`函数来求取一个字符串数组的长度。这两个函数都返回字符串的字符数目,即字符串的长度。
示例代码如下:
```cpp
#include <iostream>
#include <string>
int main() {
std::string arr[] = {"Hello", "World", "C++"};
int length = sizeof(arr) / sizeof(arr[0]);
std::cout << "数组长度为:" << length << std::endl;
return 0;
}
```
输出结果为:
```
数组长度为:3
```
阅读全文