gpt4 book ai didi

c++ - 输出流中的函数调用优先级

转载 作者:行者123 更新时间:2023-12-03 06:49:12 25 4
gpt4 key购买 nike

所以,我有以下类(class):

typedef double decimal;

class Ratio {
int num, den;
decimal val;

public:
Ratio() { num = 1, den = 1, val = (decimal)num / den; }

Ratio update(int a, int b) {
num *= a, den *= b;
val = (decimal)num / den;
return *this;
}

decimal v(void) { return val; }

friend ostream &operator<<(ostream &out, const Ratio &R) {
return (out << R.num << ':' << R.den);
}
};

当我在输出流中使用成员函数时:

cout<<"R = "<<R.update(2,1)<<"\tvalue = "<<R.v();

其中 R 是 Ratio 类型,首先调用右端的函数,以便它显示更新的比率但未更新的值:

R = 2:1    value = 1

我通过将流分成两部分克服了这个问题:

cout<<"R = "<<R.update(2,1), cout<<"\tvalue = "<<R.v();

这样我就“强制”首先调用 .update() 。是否有另一种方法可以实现这一目标,仅使用一个流进行输出?

最佳答案

由于 C++ 中没有保证的求值顺序,因此如果不将其分成单独的部分(就像您在修复中所做的那样),它将无法工作。

引用自cppreference

There is no concept of left-to-right or right-to-left evaluation in C++. This is not to be confused with left-to-right and right-to-left associativity of operators: the expression a() + b() + c() is parsed as (a() + b()) + c() due to left-to-right associativity of operator+, but the function call to c may be evaluated first, last, or between a() or b() at run time

正如用户@super指出的,从c++17开始,现在定义了移位运算符的计算顺序。它隐藏在我上面链接的页面规则的第 19) 项中。因此,如果您会 c++17,那么您就完成了。

关于c++ - 输出流中的函数调用优先级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60740497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com