“copy”实现示例中的运算符优先级

时间:2011-07-27 14:43:47

标签: c++ variable-assignment increment dereference operator-precedence

我读了几行代码here,我觉得应该有一些括号。

template<class InputIterator, class OutputIterator>
  OutputIterator copy ( InputIterator first, InputIterator last, OutputIterator result )
{
  while (first!=last) 
     *result++ = *first++; // <--- this line
  return result;
}

根据运算符优先级表here,我认为后缀增量优先,然后取消引用,然后是赋值。但它在我看来,意图是首先发生取消引用,然后是赋值,然后是后缀增量。

我读错了吗?或者表格错误,还是代码段?或者还有别的东西吗?

1 个答案:

答案 0 :(得分:6)

后缀增量首先执行,但后缀增量的返回值是指针的原始值。这就是它起作用的原因。