std::tie 사용법
std::tie
pair, tuple으로 묶인 녀석들을 던저서 여러 변수에 한번에 받아 올 수 있습니다.
코드
#include <iostream>
#include <tuple>
int main() {
auto t = make_tuple(1, 2, 3);
int x = get<0>(t);
int y = get<1>(t);
int z = get<2>(t);
cout << x << ' ' << y << ' ' << z << '\n'; //1 2 3
x = y = z = 0;
cout << x << ' ' << y << ' ' << z << '\n'; //0 0 0
std::tie(x, y, z) = t;
cout << x << ' ' << y << ' ' << z << '\n'; //1 2 3
x = y = z = 0;
std::tie(x, y, ignore) = t; //세번째 자리는 무시 키워드 : ignore
cout << x << ' ' << y << ' ' << z << '\n'; //1 2 0
return 0;
}