Javaノートを勉強する--汎用型


汎用クラスの簡単な例
public class Gen<T> { 
    private T ob;     //  

    public Gen(T ob) { 
            this.ob = ob; 
    } 

    public T getOb() { 
            return ob; 
    } 

    public void setOb(T ob) { 
            this.ob = ob; 
    } 

    public void showTyep() { 
            System.out.println("T : " + ob.getClass().getName()); 
    } 
}
public class GenDemo { 
        public static void main(String[] args){ 
                // Gen Integer  
                Gen<Integer> intOb=new Gen<Integer>(88); 
                intOb.showTyep(); 
                int i= intOb.getOb(); 
                System.out.println("value= " + i); 

                System.out.println("----------------------------------"); 

                // Gen String  
                Gen<String> strOb=new Gen<String>("Hello Gen!"); 
                strOb.showTyep(); 
                String s=strOb.getOb(); 
                System.out.println("value= " + s); 
        } 
}
 
汎用メソッドの簡単な例では、汎用パラメータのリストを戻り値の前に配置します.
public class GenericMethods {
  public <T> void f(T x) {
    System.out.println(x.getClass().getName());
  }
  public static void main(String[] args) {
    GenericMethods gm = new GenericMethods();
    gm.f("");
    gm.f(1);
    gm.f(1.0);
    gm.f(1.0F);
    gm.f('c');
    gm.f(gm);
  }
}