构造的函数的名字一定跟类名的名字是一样的.
比如
class B1
{ int i,j;
public B1(int i,int j) //这个是构造函数,主要用于对成员进行初始化
{
this.i=i;
this.j=j;
}
public void run()//这个是方法
{
System.out.println("这个是方法");
System.out.println("i="+i+"j="+j);
}
public static void main(String args[])
{
B1 b=new B1(2,3);//应该这样调用,不然会出错,因为构造函数要求带2个参数.
b.run();
}
}
这程序简单,但..
后面讲到集合和IO这些的时候,这东西就区别不了了,求解! |