一道java基礎陷阱題

mischen520發表於2017-08-17
/**
 * mischen
 * 2017年8月16日 上午6:02:57
 */
package com.mischen.cn;

/**
 * @author mischen
 * 2017年8月16日 上午6:02:57
 */
public class Demo3 {
   
	void pp(int i){
		i++;//1
	}
	public static void main(String args[]){
		Demo3 test =new Demo3();
		int i=0;
		test.pp(i);
		i=i++;//原值還是為0,沒有改變,所以最後輸出為0
		System.out.println(i);//0
	}
	
}

相關文章