View on GitHub

我的学习笔记

好记性不如烂笔头

8.2 定义简单泛型类

public class Pair<T>{   //Pairs类引入了一个类型变量T,用尖括号<>括起来,并放在类名后面
    private T first;
    private T second;
    
    public Pair()   { first = null; second = null;}
    public Pair(T first,T second)   {   this.first=first; this.second=second;   }

    public T getFirst() { return first; }
    public T getSecond(){ return second;}

    public void setFirst(T newValue)    {   this.first=newValue;    }
    public void setSecond(T newValue)   {   this.second=newValue;   }
}

返回