C++에서 구조체의 벡터 초기화

Jinku Hu 2023년10월12일
  1. 이니셜 라이저 목록 생성자를 사용하여 C++에서 구조체 벡터 초기화
  2. 범위 생성자를 사용하여 C++에서 구조체 벡터 초기화
  3. 사용자 지정 생성자를 사용하여 C++에서 구조체 벡터 초기화
C++에서 구조체의 벡터 초기화

이 기사에서는 C++에서 구조체 벡터를 초기화하는 방법에 대한 여러 방법을 보여줍니다.

이니셜 라이저 목록 생성자를 사용하여 C++에서 구조체 벡터 초기화

이니셜 라이저 목록은 상수 값으로 컨테이너를 초기화하는 일반적인 방법입니다. 이 방법은 일종의 시작 상태를 가져야하는 데이터 구조에 더 적합합니다. 아래 예에서vector에는 사용자 정의 된Person 구조체가 포함되어 있으므로 이니셜 라이저 목록 항목은 중괄호 안에 그룹화하고 콜론으로 구분해야합니다. struct의 요소는struct.element 표기법을 사용하여 액세스되고 콘솔에 출력됩니다.

#include <iostream>
#include <string>
#include <vector>

using std::cout;
using std::endl;
using std::string;
using std::vector;

struct Person {
  string name;
  string surname;
  int age;
};

int main() {
  vector<Person> parr1 = {{"John", "Cooper", 32},
                          {"Theo", "Parrot", 23},
                          {"Aun", "Chao", 43},
                          {"Vivien", "Bardot", 67}};

  for (const auto &arr : parr1) {
    cout << "Name: " << arr.name << endl
         << "Surname: " << arr.surname << endl
         << "Age: " << arr.age << endl;
  }

  return EXIT_SUCCESS;
}

출력:

Name: John
Surname: Cooper
Age: 32
Name: Theo
Surname: Parrot
Age: 23
Name: Aun
Surname: Chao
Age: 43
Name: Vivien
Surname: Bardot
Age: 67

범위 생성자를 사용하여 C++에서 구조체 벡터 초기화

또는 범위 생성자를 사용하여 구조체의 ‘벡터’를 초기화 할 수 있습니다. 이 방법은 기존vector 객체의 다른 복사본을 만들어야 할 때 유용합니다. 다음 코드 샘플에서 볼 수 있듯이Person 구조체의parr3 벡터를 선언하고 동일한 유형의parr1 벡터 콘텐츠로 초기화합니다.

#include <iostream>
#include <string>
#include <vector>

using std::cout;
using std::endl;
using std::string;
using std::vector;

struct Person {
  string name;
  string surname;
  int age;
};

int main() {
  vector<Person> parr1 = {
    {"John", "Cooper", 32}, {"Theo", "Parrot", 23}, {"Kim", "Colbert", 53},
    {"Aun", "Chao", 43},

    vector<Person> parr3(parr1.begin(), parr1.end());

  for (const auto &arr : parr3) {
    cout << "Name: " << arr.name << endl
         << "Surname: " << arr.surname << endl
         << "Age: " << arr.age << endl;
  }

  return EXIT_SUCCESS;
}

출력:

Name: John
Surname: Cooper
Age: 32
Name: Theo
Surname: Parrot
Age: 23
Name: Kim
Surname: Colbert
Age: 53
Name: Aun
Surname: Chao
Age: 43

사용자 지정 생성자를 사용하여 C++에서 구조체 벡터 초기화

또 다른 해결책은 주어진 수의 동일한 값으로 벡터를 초기화하는 기능을 제공하는 ‘벡터’특정 생성자입니다. 이 경우 생성자에게 구조인Person 유형의 단일 요소와 객체를 초기화하기 위해 임의의 숫자3을 제공합니다.

#include <iostream>
#include <string>
#include <vector>

using std::cout;
using std::endl;
using std::string;
using std::vector;

struct Person {
  string name;
  string surname;
  int age;
};

constexpr int NUM = 3;

int main() {
  vector<Person> parr4(NUM, {"John", "Cooper", 32});

  for (const auto &arr : parr4) {
    cout << "Name: " << arr.name << endl
         << "Surname: " << arr.surname << endl
         << "Age: " << arr.age << endl;
  }

  return EXIT_SUCCESS;
}

출력:

Name: John
Surname: Cooper
Age: 32
Name: John
Surname: Cooper
Age: 32
Name: John
Surname: Cooper
Age: 32
작가: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn Facebook

관련 문장 - C++ Vector