当前位置:   article > 正文

设计Point类用来定义平面上的一个点,用构造方法传 递坐标位置,方法有计算两点的距离。编写测试类,在该类中实现Point类的对象。_设计point类用来定义平面上的一个点坐标

设计point类用来定义平面上的一个点坐标
  1. package practise001;
  2. /**
  3. ************************************
  4. * @author Hejing
  5. * @date 2017年12月13日
  6. * @class Point.java
  7. *
  8. ************************************
  9. *///设计Point类用来定义平面上的一个点,用构造方法传
  10. //递坐标位置,方法有计算两点的距离。编写测试类,在该类中实现Point类的对象。
  11. public class Point {
  12. double x1 ;
  13. double x2 ;
  14. double y1 ;
  15. double y2 ;
  16. double dis;
  17. public Point(double a,double b,double c,double d) {
  18. this.x1 =a;
  19. this.y1 =b;
  20. this.x2 =c;
  21. this.y2 =d;
  22. }
  23. void distance() {
  24. dis=Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
  25. System.out.println("第一个点坐标为"+x1+" "+y1);
  26. System.out.println("第一个点坐标为"+x2+" "+y2);
  27. System.out.println("x y两点之间距离为"+dis);
  28. }
  29. }
  30. package practise001;
  31. /**
  32. ************************************
  33. * @author Hejing
  34. * @date 2017年12月13日
  35. * @class Test.java
  36. *
  37. ************************************
  38. */
  39. public class Test {
  40. public static void main(String[] args) {
  41. Point p=new Point(0,3.0,0,4.0);
  42. p.distance();
  43. }
  44. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/380551
推荐阅读
相关标签
  

闽ICP备14008679号