vector<sting>chsuh
时间: 2023-09-24 22:03:56 浏览: 91
C#中List〈string〉和string[]数组之间的相互转换
您提到的 `vector<sting>` 是一种无效的语法。正确的语法应该是 `vector<string>`。`vector<string>` 是 C++ 中的一种数据结构,它是一个动态数组,用于存储字符串类型的元素。您可以使用它来创建一个可变大小的字符串数组,并通过索引访问和操作其中的元素。
以下是一个示例代码,展示了如何创建和使用 `vector<string>`:
```cpp
#include <iostream>
#include <vector>
#include <string>
int main() {
std::vector<std::string> chsuh; // 创建一个空的 vector<string>
// 向 vector 中添加元素
chsuh.push_back("Hello");
chsuh.push_back("World");
chsuh.push_back("!");
// 访问和输出 vector 中的元素
for (const auto& str : chsuh) {
std::cout << str << " ";
}
std::cout << std::endl;
return 0;
}
```
输出结果将会是:
```
Hello World !
```
希望这能解答您的问题!如果有任何进一步的疑问,请随时提问。
阅读全文