//构造函数求两个点:1.他是一个与类同名的方法 2.没有返回值类型,并没有void修饰
public class Points{
int x,y;//(特征)
//构造函数的重载(行为)
Points(){
x=0;y=0;
}
Points(int a,int b){
x=a;y=b;
}
void show(){
System.out.println ("点的坐标是:("+x+","+y+")");
}
//实例化
public static void main (String[] args) {
Points Points1=new Points();//3.在创建对象时对他的成员变量进行初始化
Points Points2=new Points(3,4);
Points1.show();
Points2.show();
}
}
posted on 2009-03-26 09:19
鹏凌 阅读(110)
评论(0) 编辑 收藏