C# 快速導覽 - struct 型態

關鍵字 (keyword) struct 用來建立結構型態,這是一種實值型態,簡單說就是可具有多種實值型態數值的型態。



舉例如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Demo {
    public struct Book {
        public double price;
        public string title;
        public string author;
    }
     
    static void Main() {
        Book a;
        a.price = 15.0;
        a.title = "Spoon";
        a.author = "Tony";
        System.Console.WriteLine("Price : {0}", a.price);
        System.Console.WriteLine("Title : {0}", a.title);
        System.Console.WriteLine("Author: {0}", a.author);
    }
}
 
/* 《程式語言教學誌》的範例程式
    檔名:struct1.cs
    功能:示範 C# 程式
    作者:張凱慶
    時間:西元 2013 年 6 月 */


編譯執行,結果如下



中英文術語對照
關鍵字keyword


您可以繼續參考
其他內建型態


相關目錄
回 C# 快速導覽
回 C# 教材
回首頁


參考資料
Standard ECMA-334 C# Language Specification
msdn: struct (C# 參考)

沒有留言: