逗号在C++里面是一个运算符,其值等于最后一个符号
(按题主的要求)不用结构化绑定,用 tuple加tie 可以返回多个数据:
#include <iostream> #include <tuple> #include <string> std::tuple<std::string, int, int, int> get_sizes() { return {"张圆圆", 58, 28, 68}; } int main() { std::string name; int breast, waist, hip; std::tie(name, breast, waist, hip) = get_sizes(); std::cout << name << "的数据:" << breast << "," << waist << "," << hip << "。"; return 0; } // 输出: 张圆圆的数据:58,28,68。
链接:
请学习逗号表达式。