6
爲什麼我們可以在結構中有一個靜態的循環引用,但不是實例類型的循環引用?爲什麼循環引用實例類型的結構體中不允許使用靜態類型的循環引用?
struct C
{
//following line is not allowed. Compile time error.
// it's a non static circular reference.
public C c1;
//But this line compiles fine.
//static circular reference.
public static C c2;
}
如果你有自己的結構域,那麼你不能確定它的大小。 –