java中point的用法 用java编写一个名为Point的类,表示二维坐标中的一点?
用java编写一个名为Point的类,表示二维坐标中的一点?
public class Point{
private double x
private double y
Point(){}
Point(double a,double b)
{
this.x=a
this.y=b
}
public double getX()
{
return this.x
}
public double getY()
{
return this.y
}
public void setX(double a)
{
this.x=a
}
public void setY(double b)
{
this.y=b
}
}这样就可以了,我试了下能通过编译,你自己测试下试试吧
求高手用JAVA帮我设计一个完整的Point类,可以计算两点之间距离和中间点坐标的,万分感谢?
你好,程序如下:
public class Point {
double x1,x2,y1,y2
double d,x3,y3
Point(double x1,double y1,double x2,double y2){//构造方法
this.x1 = x1
this.x2 = x2
this.y1 = y1
this.y2 = y2
}
void TestPoint(){//求距离和中点坐标
x3 = (x1 x2)/2
y3 = (y1 y2)/2
d = Math.sqrt((x1 - x2)*(x1 - x2) (y1 - y2)*(y1 - y2))
System.out.println("(" x3 "," y3 ")")
System.out.println(d)
}
public static void main(String[] args) {
Point p = new Point(1,1,2,2)
p.TestPoint()
}
}
如果还有其他要求的话,我再改进一下。
java中point的用法 java point类 java定义一个点类point
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。