我阅读了几条法典: 。
template<class InputIterator, class OutputIterator>
OutputIterator copy ( InputIterator first, InputIterator last, OutputIterator result )
{
while (first!=last)
*result++ = *first++; // <--- this line
return result;
}
根据操作员排位表here,我认为,固定职位加薪将优先,然后是减员,然后是派任。 但我想到的是,我的意图是,参比首先发生,然后是派任,然后是职位加薪。
我读错了吗? 或者该表错了,或者该法典有误? 或者还有什么东西?