[C++17] Structed Bindings
2019.11.09
다음은 tuple의 각 요소를 가져오는 C++14의 코드다. tuple t = { 1, 2, "test" }; int first = get(t); int second = get(t); string str = get(t); C++17에서는 요소를 쉽게 가져올 수 있도록 새로운 문법이 추가됬다. (pair 객체에서도 사용가능) tuple t = { 1, 2, "test" }; auto [ first, second, str ] = t;