在以下程序中,我使用了 this(1) 和 this(2) 使用 this(1) 和 this(2) 的目的是什么,我还想知道这是关键字还是方法?我是新手java编程语言。
class Const
{
Const()
{
this(1);
System.out.println(1);
}
Const(int x)
{
System.out.println(2);
}
}
class const1 extends Const
{
int a;
const1()
{
this(8);
System.out.println(3);
}
const1(int x)
{
System.out.println(4);
}
public static void main(String s[])
{
new const1();
}
}