Java中的Point類是一種表示二維坐標的數(shù)據(jù)類型。Point對象通常包含兩個字段,分別表示坐標的x和y值。
public class Point { public int x; public int y; public Point(int x, int y) { this.x = x; this.y = y; } }
在實際開發(fā)中,我們可以使用Point對象來表示平面上的一個點。比如,在圖形界面程序中,我們可以用Point對象表示窗口或控件的位置。以下是一個使用Point類創(chuàng)建和使用對象的示例。
Point p1 = new Point(10, 20); System.out.println("p1: (" + p1.x + ", " + p1.y + ")"); Point p2 = new Point(); p2.x = 30; p2.y = 40; System.out.println("p2: (" + p2.x + ", " + p2.y + ")");
以上代碼將會輸出以下內(nèi)容:
p1: (10, 20) p2: (30, 40)
通過Point對象的x和y字段,我們可以輕松地獲取和修改點的坐標。當然,我們也可以在程序中對Point類進行擴展,以添加更多的功能。