クラスで、オブジェクト作成のプロセス以外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.
}
}