私は次のクラスを持っています:
public class STElement
{
public int _value;
public STElement _next;
public int _index;
public STElement()
{
_value = 0;
_next = null;
_index = 0;
}
}
プログラムの実行時に、次のようなオブジェクトを作成します。
_rootStack1 = new STElement();
_rootStack2 = new STElement();
_rootStack3 = new STElement();
しかし、私は_rootStack1に_index=0を持たせたいだけです。
では、3つのオブジェクトのうち1つだけが_indexを取得するようにするには、どうすればよいでしょうか。