java point类如何使用

 我来答
就热68
2011-09-23 · 超过15用户采纳过TA的回答
知道答主
回答量:161
采纳率:0%
帮助的人:54.6万
展开全部
先实例化2个Point类对象,然后对每个对象的横纵坐标值进行设置,可以用Point类的distance方法求出2个点的距离。
匿名用户
2011-09-24
展开全部
新建个类:
public class MyPoint
{
private int x;
private int y;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public String toString() {
System.out.println("("+ x +","+ y + ")");
return null;
}

}
再新建一个测试类:
public class TestPoint {
public static void main(String[] args) {
MyPoint myPoint = new MyPoint();
myPoint.setX(1);
myPoint.setY(2);
myPoint.toString();
}
}

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
nextgreen
2011-09-23 · TA获得超过5.4万个赞
知道大有可为答主
回答量:2.9万
采纳率:80%
帮助的人:1.2亿
展开全部
Point 类表示二维坐标系统中的一个位置,其中 x 表示水平轴,y 表示垂直轴。

说的简单点,就是我们从高手开始学的坐标系统,学过基本的数学知识应该就会用。
给你一个链接参考一下吧。

参考资料: http://uh008.blog.163.com/blog/static/17411338200732294127438/

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
raplife
推荐于2017-09-02 · 超过21用户采纳过TA的回答
知道答主
回答量:110
采纳率:0%
帮助的人:63.1万
展开全部
由开发文档吗?上面有详细说明的,给你个地址。
http://www.gznc.edu.cn/yxsz/jjglxy/book/Java_api/java/awt/class-use/Point.html
给个例子,计算两点间的距离
public class Point
{
private int x;
private int y;
public Point(){x=0;y=0;}
public Point(int x, int y){this.x = x;this.y = y;}
public void setX(int x){this.x = x;}
public void setY(int y){this.y = y;}
public int getX(){return x;}
public int getY(){return y;}
public double Distance(Point p)
{
int diffx = p.getX() - this.x;
int diffy = p.getY() - this.y;
return Math.Sqrt(diffx * diffx + diffy * diffy);
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
toto71229
2011-09-23 · TA获得超过808个赞
知道小有建树答主
回答量:513
采纳率:0%
帮助的人:469万
展开全部
楼主看看参考吧 说的很详细了。。。

参考资料: http://www.cnblogs.com/aether/archive/2010/06/11/1756519.html

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式