在C++中,可以使用以下方法來有效初始化string數(shù)組:
#include <iostream>
#include <string>
int main() {
const int SIZE = 5;
std::string arr[SIZE];
for (int i = 0; i < SIZE; i++) {
arr[i] = "Element" + std::to_string(i);
}
for (int i = 0; i < SIZE; i++) {
std::cout << arr[i] << std::endl;
}
return 0;
}
#include <iostream>
#include <string>
int main() {
const int SIZE = 5;
std::string arr[SIZE] = {"Element0", "Element1", "Element2", "Element3", "Element4"};
for (int i = 0; i < SIZE; i++) {
std::cout << arr[i] << std::endl;
}
return 0;
}
這兩種方法都可以有效地初始化string數(shù)組,具體選擇哪種方法取決于初始化的復(fù)雜程度和個人喜好。