首页 > 编程语言 > 详细

java 泛型

时间:2018-10-20 23:18:46      阅读:128      评论:0      收藏:0      [点我收藏+]

只能使用引用类型, 不能使用基本类型(int 与 Integer)

泛型类

class Point<T>{
    private T a;
    private T b;
    public Point(T a, T b){
        this.a = a;
        this.b = b;
    }
    public void say(){
        System.out.println("a: " + a + ", b: " + b);
    }
}
public class Test3 {
    public static void main(String[] args) {
        Point<Integer> point1 = new Point<>(1, 2);
        point1.say();
        Point<String> point2 = new Point<>("hello", "world");
        point2.say();
    }
}

泛型接口

interface IPoint<T>{
    void say(T t);
}
class PointImpl1 implements IPoint<String>{
    @Override
    public void say(String s) {
        System.out.println(s);
    }
}

class PointImpl2<T> implements IPoint<T>{
    @Override
    public void say(T t) {
        System.out.println(t);
    }
}
public class Test3 {
    public static void main(String[] args) {
        IPoint p1 = new PointImpl1();
        p1.say("Hello");
        IPoint<Integer> p2 = new PointImpl2<>();
        p2.say(1);
    }
}

泛型方法

public static void main(String[] args) {
        String s = say("hello");
        System.out.println(s);
    }

    // 返回类型由参数决定
    public static <T> T say(T t){
        return t;
    }

 

java 泛型

原文:https://www.cnblogs.com/huanggy/p/9823390.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!