作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我怎样才能返回 x 和 y,而不是其中一个?在我的 Location 类中,我保护了名为 x_pos
和 y_pos
的数据。
void Location::getXY(double& x, double& y) const {
x_pos = x;
y_pos = y;
return x, y;
}
最佳答案
你可以返回一个std::pair
。我假设您想按值返回,而不是在此处按引用返回。
#include <utility> // for std::pair
// if using c++14, else use std::pair<double,double> as return type
auto Location::getXY(double& x, double& y) const {
x_pos = x;
y_pos = y;
return std::make_pair(x,y);
}
虽然我必须指出这个函数没有逻辑意义,但您返回的是您在开始时传递的值而没有修改它们。
关于c++ - 如何将位置返回为 x、y、z,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36815306/
我是一名优秀的程序员,十分优秀!