相关代码 |
|
//Point.java // 点类定义 //package com.deitel.jhtp3.ch09; public class Point { protected int x, y; // 点的坐标 // 构造函数 public Point() { setPoint( 0, 0 ); } // 构造函数 public Point( int a, int b ) { setPoint( a, b ); } // Set x 和 y 点的坐标 public void setPoint( int a, int b ) { x = a; y = b; } // 获得 x 坐标 public int getX() { return x; } // 获得 y 坐标 public int getY() { return y; } // 转换点坐标以字符串表示 public String toString() { return "[" + x + ", " + y + "]"; } }
相关资源 |
|