溫馨提示×

如何有效初始化string數(shù)組

小樊
100
2024-07-01 23:46:43
欄目: 編程語言

在C++中,可以使用以下方法來有效初始化string數(shù)組:

  1. 使用循環(huán)逐個初始化每個元素:
#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;
}
  1. 使用初始化列表來初始化數(shù)組元素:
#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ù)雜程度和個人喜好。

0