C++11) std::tuple
std::tuple은 가변인자 타입으로써, std::pair의 일반형입니다.예전엔 2개 이상의 값을 반환 하려면 구조체를 이용해 입력해줬어야 하지만 이젠 std::tuple로 가능합니다. tuple을 사용하려면 기본적으로 헤더를 포함하셔야 합니다.123456789101112131415#include #include #include using namespace std;int main() { typedef std::tuple sc; std::tuple sc1 = std::make_tuple(3.8, 'A', "김덕배"); auto sc2 = std::make_tuple(3.4, 'B', "김아무개"); // 가장 일반적인 방법 sc sc3 = std::make_tuple(0.0, 'F', "박아무개"); /..