class Point { double x,y; //方法名称必须与构造方法名保持一致 public Point(double _x,double _y){ x=_x; y=_y; } public double GetDistance(Point h){ return Math.sqrt((x-h....
1、List中可以添加任何对象,包括自己定义的新的类。class Person{ ..... } 上面定义了一个Person类,下面看好如何使用List Person p1=new Person(); Person p2=new Person(); List list=new ArrayList(); list.ad......