集册 Java实例教程 使用它来引用当前对象

使用它来引用当前对象

欢马劈雪     最近更新时间:2020-01-02 10:19:05

574
使用它来引用当前对象

class Point {

    public int x = 0;/*来 自 N o w J a v a . c o m - 时代Java*/

    public int y = 0;


    // a constructor!

    public Point(int x, int y) {

        this.x = x;

        this.y = y;

    }

}