1. 程式人生 > >java的自動拆箱裝箱

java的自動拆箱裝箱

以下程式執行結果為

public class Test  {     
     public static void main(String[] args) {    
      Integer i=null;
      if(i==0){
          System.out.println("0");
      }else{
          System.out.println("other");
      }
    }       
}

答案:NullPointerException