c – “copy”实现示例中的运算符优先级
作者:互联网
我读了几行代码here,我觉得应该有一些括号.
template<class InputIterator, class OutputIterator>
OutputIterator copy ( InputIterator first, InputIterator last, OutputIterator result )
{
while (first!=last)
*result++ = *first++; // <--- this line
return result;
}
根据运算符优先级表here,我认为后缀增量优先,然后取消引用,然后是赋值.但它在我看来,意图是首先发生取消引用,然后是赋值,然后是后缀增量.
我读错了吗?或者表格错误,还是代码段?或者还有别的东西吗?
解决方法:
后缀增量首先执行,但后缀增量的返回值是指针的原始值.这就是它的原因.
标签:dereference,c,variable-assignment,operator-precedence,increment 来源: https://codeday.me/bug/20190826/1734465.html