std::string数组
时间: 2023-11-15 21:05:22 浏览: 130
C++_String2[1]
std::string 数组是指存储多个 std::string 对象的连续内存空间。在 C++ 中,可以使用以下方式声明和定义 std::string 数组:
```cpp
std::string myArray[size];
```
其中,`size` 是数组的大小,表示可以存储的 std::string 对象的数量。创建数组后,可以通过索引访问和操作每个 std::string 对象,索引从 0 开始,最大索引为 `size-1`。
例如,创建一个大小为 5 的 std::string 数组并赋值:
```cpp
std::string myArray[5];
myArray[0] = "Hello";
myArray[1] = "World";
myArray[2] = "C++";
myArray[3] = "is";
myArray[4] = "awesome";
```
可以通过循环遍历数组来访问和处理每个 std::string 对象:
```cpp
for (int i = 0; i < 5; i++) {
std::cout << myArray[i] << " ";
}
```
这将输出:`Hello World C++ is awesome`。
阅读全文