++在前和在后的问题 2022-2-10 14:30 int i = 2; System.out.println(i+++1); System.out.println(++i+1); 结果 3 5 面试