结果是多少?public static void main(String[] args) { int i = 0; i = i++ + ++i; System.out.println(i); }//结果输出 2为什么是2? 查看完整描述