我學習C#入門的書就是,C# Programming Language,因為是本很經典的書。它仿效C和C++的 經典著作The C Programming Language和C++ Programming Language。這些書的作者都是這門語言的創造者。
最近,發現自己對C#語言的理解有所欠缺,所以又找到了這麼C#經典之作,重新溫習。發現溫故而知新啊。下面我就總結了昨天看的Struct這一章的一些知識。
Struct的聲明如下:
聲明如下:
[Attributes] [new | public | protected | internal | private ] struct
Point [ : interface,……]{
constant-declaration
fIEld-declaration
method-declaration
property-declaration
event-declaration
indexer-declaration
Operator-declaration
constructor-declaration
static-constructor-declaration
type-declaration
}
Struct 和 Class 的區別:
1. Struct 是值類型