结果是多少?
public static void main(String[] args) { int i = 0; i = i++ + ++i; System.out.println(i); }//结果输出 2
为什么是2?
相关分类