百科问答小站 logo
百科问答小站 font logo



C++可以直接返回多值? 第1页

  

user avatar   enzojz 网友的相关建议: 
      

逗号在C++里面是一个运算符,其值等于最后一个符号


user avatar   zhuangyan-stone 网友的相关建议: 
      

(1)有没有可能直接返回多值(并且如题目要求,不许用 structured binding)

(按题主的要求)不用结构化绑定,用 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。      

链接:

(2) 下面截图的操作为啥不报错?

请学习逗号表达式。




  

相关话题

  Java 的开发效率究竟比 C++ 高在哪里? 
  把 string 当 enum 用,有性能损失吗? 
  C++ 对 c 兼容是什么意思? 
  开发桌面软件时,如何使用 Mac 上那种扁平化极简风格的 UI? 
  关于阿里巴巴2011年一道C++笔试题(struct和class)的疑问? 
  c++的单例模式为什么不直接全部使用static,而是非要实例化一个对象? 
  如何才能写出没有bug的程序? 
  为什么大多数人用C++时都要用&&,||和!来表示与或非,而不是用and or not? 
  C++整型有__int8、__int16、__int32等等,为什么还要short、int、long? 
  2022年学C++开发好比49年入国军,没什么公司在用C++了? 

前一个讨论
在空间站内扔纸飞机,它会怎么运动?
下一个讨论
赵州桥是中国现存最早的石拱桥,那外国的第一座石拱桥或拱桥又是哪座桥呢?





© 2024-12-27 - tinynew.org. All Rights Reserved.
© 2024-12-27 - tinynew.org. 保留所有权利