在C++中創建字符串數組可以采用以下方法:
char strArray[][20] = {"Hello", "World", "C++"};
#include <vector>
#include <string>
std::vector<std::string> strArray = {"Hello", "World", "C++"};
#include <array>
#include <string>
std::array<std::string, 3> strArray = {"Hello", "World", "C++"};
這些方法都可以用來創建字符串數組,具體選擇哪種方法取決于需求和使用場景。