Javaクラス、インタフェース定義関連


今日の少しの収穫

  
  
  
  
  1. /** 
  2.  *   
  3.  * Java ,  
  4.  */ 
  5. public class Test { 
  6.     public static void main(String[] args){ 
  7.         int x; 
  8.         System.out.println(x); //The local variable x may not have been initialized 
  9.     } 
  10. /** 
  11.  * 
    */ 
  12. abstract public class TestProtected {}//Right! 
  13. final public class Test4{}//Right! 
  14.  
  15. //protected   
  16. protected class Test{}//Error! 
  17.  
  18. // static  
  19. public static interface Test{}//Error! 
  20. static class Test{} //Error!  
  21. // :