其实tuple这个类没啥意义
超过3个类型就应该自定义struct了
【 在 xiaoxiake (xiaoxiake) 的大作中提到: 】
: 标 题: 我擦,这还是当年的傻白甜CPP吗?
: 发信站: 水木社区 (Fri May 22 20:56:35 2020), 站内
:
: #include <iostream>
: #include <string>
: #include <tuple>
:
: std::tuple<int, double, std::string> f() {
: return std::make_tuple(1, 2.3, "456");
: }
: int main() {
:
auto[x, y, z] = f(); // x,y,z 分别被推导为int,double,std::string: std::cout << x<< y<< z << std::endl;
: }
: --
:
: ※ 来源:·水木社区
http://www.newsmth.net·[FROM: 111.205.43.*]
--
FROM 171.83.9.*