摘要: template<typename Tuple, size_t N> struct tuple_show { static void show(const Tuple &t, std::ostream& os) { tuple_show<Tuple, N - 1>::show(t, os); os 阅读全文
posted @ 2024-03-06 14:09 cnblogs_kk 阅读(8) 评论(0) 推荐(0)