C++基础(五)自增的问题 Posted on 2025-01-03 Views: Symbols count in article: 47 Reading time ≈ 1 mins. 后置递增运算符的优先级高于解引用运算符,因此*p++等同于*(p++) 将p+1后返回p的初始值