在C++中,可以使用std::vector
和std::string
来声明一个字符串数组。以下是一个示例代码:
#include<iostream>
#include<vector>
#include<string>
int main() {
std::vector<std::string> stringArray;
stringArray.push_back("Hello");
stringArray.push_back("World");
for (const auto& str : stringArray) {
std::cout<< str<< std::endl;
}
return 0;
}
在这个示例中,我们使用了std::vector
来存储一个字符串数组,并使用std::string
来表示每个字符串。我们可以使用push_back
方法向数组中添加字符串,并使用范围for
循环来遍历数组并输出每个字符串。
注意,这个示例中没有使用任何云计算品牌商,因为在C++中声明一个字符串数组不需要任何云计算相关的技术。
领取专属 10元无门槛券
手把手带您无忧上云