我有以下课程:
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;
那么我该怎么做,三个对象中只有一个获得_index?