• 2021-04-14
    类Line的定义如下,其中的this代表的是()
    class Line{
    private int x,y;
    public Line(int x,int y){
    this.x=x;
    this.y=y;
    }
    }