使用泛型来优化坐标类

Posted 初学者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用泛型来优化坐标类相关的知识,希望对你有一定的参考价值。

package fanxing.cn;
/*
 * 使用泛型来优化 坐标类的demo
 */
//申明泛型类
class Point <t> {
private t x;
private t y;
public void setx(t  x){
    this.x = x;
}
public t getx(){
    return x;
}
public void sety(t  y){
    this.y = y;
}
public t gety(){
    return y;
}
}
public class FanXingDemo {
    public static void main(String[] args) {
        //泛型对象定义
        //问题:这里为啥不用int ,要用Integer 呢,因为泛型中只能使用包装类
        Point <Integer>p = new Point<Integer>();
        p.sety(89);
        p.setx(34);
        System.out.println(p.getx());
        System.out.println(p.gety());
    }

}

 

以上是关于使用泛型来优化坐标类的主要内容,如果未能解决你的问题,请参考以下文章

通用持久层如何设计

java核心学习(四十一) 反射和泛型

如何限制使用泛型接受某些用户定义的类对象的方法?

泛型(Generic)

TypeScript 泛型:'类型不可分配给类型 T'

TS之泛型