JAVA笔记140-使用this语句解决构造器重载相互调用问题

Posted Fallen Lunatic

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA笔记140-使用this语句解决构造器重载相互调用问题相关的知识,希望对你有一定的参考价值。

//创建点对象
class Point{
  private int x;
      private int y;

  Point(int x,int y){
    this.x = x;
    this.y = y;
  }
  public int getX(){
    return x;
  }
  public int getY(){
    return y;
  }
}

//创建圆对象
class Circle{
  private int r;//圆的半径

  Circle(int r){
    this.r = r;
  }

  int judge(Point p){
    int xxyy = p.getX() * p.getX() + p.getY() * p.getY();
    int rr = this.r * this.r;
    if(xxyy > rr){
      return 1;
    }else if(xxyy < rr){
      return 0;
    }else{
      return -1;
    }
}
}

 


//测试:判断点与圆之间的关系
public class thisDemo{
  public static void main(String[] args){
    Point p = new Point(3,4);//点的位置
    Circle c = new Circle(5);//创建圆
    int ret = c.judge(p);
    System.out.println(ret);
  }
}

以上是关于JAVA笔记140-使用this语句解决构造器重载相互调用问题的主要内容,如果未能解决你的问题,请参考以下文章

Java笔记(继承)

Java笔记(继承)

Java笔记(继承)

JAVA学习笔记-this隐式参数

Java_封装,继承和多态笔记

java使用this关键字调用本类重载构造器