自增与自减

++--常和解引用符号一起使用。

auto pbeg = v.begin();
while (pbeg != v.end() && *beg >= 0)
    cout << *pbeg++ << endl;

后缀的自增的优先级比解引用高,因此,*pbeg++等价于*(pbeg++)