vector<string> a,此字符串数组怎么插入字符串
时间: 2024-02-19 16:59:09 浏览: 189
C++string (含字符串数组)相关用法.pdf
`vector<string> a` 表示一个名为 `a` 的字符串数组(或称为字符串向量),你可以通过以下方式向其中插入字符串:
1. 使用 `push_back` 函数将字符串添加到数组的末尾:
```c++
a.push_back("hello");
a.push_back("world");
```
2. 使用下标运算符 `[]` 直接将字符串插入到指定位置:
```c++
a[0] = "hello";
a[1] = "world";
```
3. 使用 `insert` 函数将字符串插入到指定位置:
```c++
a.insert(a.begin(), "hello");
a.insert(a.begin() + 1, "world");
```
以上三种方法都可以向 `vector<string> a` 中插入字符串。
阅读全文