++i更快。 因为i++原理一般是 Self operator++(int) {     Self it = *this;     ++(*this);      return it; } i++比++i要多一个赋值的过程,返回的是临时变量;而++i直接返回*this