std::tuple<int,float,char> mytuple;. mytuple = std::make_tuple (10, 2.6, 'a'); // packing values into tuple. //std::tie (myint, std::ignore, ...
確定! 回上一頁