class A {}
class B {
static A someReference = null;
void foo () {
// does calling this function many times create new objects, or all objects will point to one memory.
someReference = new A;
}
}
参照を静的にしないということは、新しいメモリの場所を指すことができないことを意味します。ありがとうございました。