"b1"
クラスbeingのオブジェクトを作成し、最初のオブジェクト、 2番目のオブジェクトなどに自動的に名前を付けるメソッドが必要です"b2"
。String
新しいオブジェクトの名前としてを使用できますか?可能であれば、どうすればよいですか?
class being {
static int count = 0;
String name;
void createbeing(){
name = "b" + Integer.toString(count);
being name = new being(); //Here I want to insert the String name as the name of the object
count++;
}
}