摘要: #include <iostream> #include <tuple> int main() { std::tuple<int, char, float> tuple; tuple = std::make_tuple(18, 'a', 2.5); int a; char b; float c; s 阅读全文
posted @ 2023-01-31 13:36 thomas_blog 阅读(29) 评论(0) 推荐(0) 编辑