gpt4 book ai didi

c++ - C++ 中 [in] 相等运算符的求值顺序?

转载 作者:行者123 更新时间:2023-11-30 01:34:27 26 4
gpt4 key购买 nike

C++ 中相等运算符的求值顺序是什么?

我看到很多代码示例,例如 this

template <class ForwardIt, class Compare>
ForwardIt is_sorted_until(ForwardIt first, ForwardIt last, Compare comp)
{
if (first != last) {
ForwardIt next = first;
while (++next != last) {
if (comp(*next, *first))
return next;
first = next;
}
}
return last;
}

并且在 while (++next != last) - 左侧是否先于右侧评估?

最佳答案

顺序未指定,like most binary operators in C++ .编译器首先评估 ++nextlast 是完全合法的,因此如果 nextlast 是引用对于相同的基础变量,您将进入未定义的行为领域(在这种情况下,没有问题)。

关于c++ - C++ 中 [in] 相等运算符的求值顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56349378/

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