例子一:(假设该包含的头文件都已包含)int i =1, j=2;int k = i+++j;std::cout<< k << std::endl;分析: 拆解为 i++ 和 j , i++先计算后+1,所以 k输出3.