java問題定義一個Point點類
#定義一個Point點類,成員變數有x,y,成員函數set()設定x,y的值,get()取得x,y的值,並定義一個點物件呼叫set()和get(),並定義一個點物件呼叫set()和get()建構方法重載,distance( )表示2點間的距離。
實例
public class Point { private int x; private int y; public Point(int x, int y) { this.x = x; this.y = 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 double distance(Point p1,Point p2){ return Math.sqrt((p2.getX()-p2.getX())*(p2.getX()-p2.getX())+(p2.getY()-p1.getY())*(p2.getY()-p1.getY())); } public static void main(String args[]){ Point p1 = new Point(14,17); Point p2 = new Point(23,90); double s = p1.distance(p1,p2); System.out.println("2点之间的距离为:"+s); } }
以上是java中point是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!