Initializer list from Seonmun Choi Modern C++주제 : std::Initializer_list 헤더 : 설명 : initializer_list 타입의 객체는 배열 식의 접근이 가능한 경량화된 대용 객체(a lightweight proxy object)이다.기존 C++03까지는 다음과 같은 4가지의 초기화 방법을 제공하였다.예1 괄호) std::string s("apple"); 예2 =) std::string s = "apple"; int n = 0; 예3 {}) int arr[4] = {0,1,2,3}; struct tm today = {0}; 예4 생성자) struct S { int x; S(): x(0) {} } 기존 초기화의 문제점은 동적 배열의 초기화 방법이 없다..