码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-05-10 18:55:03      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:半径   images   互调   使用   ret   getx   重载   log   ges   

技术分享

//创建点对象
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语句解决构造器重载相互调用问题

标签:半径   images   互调   使用   ret   getx   重载   log   ges   

原文地址:http://www.cnblogs.com/patriot/p/6837341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!