欢马劈雪 最近更新时间:2020-01-02 10:19:05
class Point { public int x = 0;/*来 自 N o w J a v a . c o m - 时代Java*/ public int y = 0; // a constructor! public Point(int x, int y) { this.x = x; this.y = y; } }