1. 程式人生 > >泛型方法的定義與使用

泛型方法的定義與使用

泛型方法的使用:方法中的引數可以接收任意型別的引數

public classObjectTool {  

    public <T> voidshow(T t){

        System.out.println(t);

    }

}

public classObjectToolDemo {

    public static void main(String[] args) {

        // TODO Auto-generated method stub

        ObjectToolot = new ObjectTool();

        ot

.show("張三");

        ot.show(27);

        ot.show(true);

    }

}

執行結果:

張三

27

true