在类中,除了创建对象的过程(即不创建具有的对象)之外B
,我如何创建类的对象?A
null
class A
{
public int one;
A(A a)
{
a.one=1;
}
}
class B
{
public static void main(String...args)
{
//now how to create an object of class A over here.
}
}