C# 結(jié)構(gòu)體 Struct
c# 結(jié)構(gòu)體 struct
在 c# 中,結(jié)構(gòu)體是值類型數(shù)據(jù)結(jié)構(gòu)。它使得一個單一變量可以存儲各種數(shù)據(jù)類型的相關(guān)數(shù)據(jù)。struct 關(guān)鍵字用于創(chuàng)建結(jié)構(gòu)體。
結(jié)構(gòu)體是用來代表一個記錄。假設(shè)您想跟蹤圖書館中書的動態(tài)。您可能想跟蹤每本書的以下屬性:
- title
- author
- subject
- book id
1. 定義結(jié)構(gòu)體
為了定義一個結(jié)構(gòu)體,您必須使用 struct 語句。struct 語句為程序定義了一個帶有多個成員的新的數(shù)據(jù)類型。
例如,您可以按照如下的方式聲明 book 結(jié)構(gòu):
struct books { public string title; public string author; public string subject; public int book_id; };
下面的程序演示了結(jié)構(gòu)的用法:
using system; using system.text; ? ? ? struct books { ? ?public string title; ? ?public string author; ? ?public string subject; ? ?public int book_id; }; ? public class teststructure { ? ?public static void main(string[] args) ? ?{ ? ? ? books book1; ? ? ? ?/* 聲明 book1,類型為 books */ ? ? ? books book2; ? ? ? ?/* 聲明 book2,類型為 books */ ? ? ? /* book 1 詳述 */ ? ? ? book1.title = "c programming"; ? ? ? book1.author = "nuha ali"; ? ? ? book1.subject = "c programming tutorial"; ? ? ? book1.book_id = 6495407; ? ? ? /* book 2 詳述 */ ? ? ? book2.title = "telecom billing"; ? ? ? book2.author = "zara ali"; ? ? ? book2.subject = ?"telecom billing tutorial"; ? ? ? book2.book_id = 6495700; ? ? ? /* 打印 book1 信息 */ ? ? ? console.writeline( "book 1 title : {0}", book1.title); ? ? ? console.writeline("book 1 author : {0}", book1.author); ? ? ? console.writeline("book 1 subject : {0}", book1.subject); ? ? ? console.writeline("book 1 book_id :{0}", book1.book_id); ? ? ? /* 打印 book2 信息 */ ? ? ? console.writeline("book 2 title : {0}", book2.title); ? ? ? console.writeline("book 2 author : {0}", book2.author); ? ? ? console.writeline("book 2 subject : {0}", book2.subject); ? ? ? console.writeline("book 2 book_id : {0}", book2.book_id); ? ? ? ? ? ? console.readkey(); ? ?} }
當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:
book 1 title : c programming book 1 author : nuha ali book 1 subject : c programming tutorial book 1 book_id : 6495407 book 2 title : telecom billing book 2 author : zara ali book 2 subject : telecom billing tutorial book 2 book_id : 6495700
2. c# 結(jié)構(gòu)的特點
您已經(jīng)用了一個簡單的名為 books 的結(jié)構(gòu)。在 c# 中的結(jié)構(gòu)與傳統(tǒng)的 c 或 c++ 中的結(jié)構(gòu)不同。c# 中的結(jié)構(gòu)有以下特點:
- 結(jié)構(gòu)可帶有方法、字段、索引、屬性、運算符方法和事件。
- 結(jié)構(gòu)可定義構(gòu)造函數(shù),但不能定義析構(gòu)函數(shù)。但是,您不能為結(jié)構(gòu)定義無參構(gòu)造函數(shù)。無參構(gòu)造函數(shù)(默認)是自動定義的,且不能被改變。
- 與類不同,結(jié)構(gòu)不能繼承其他的結(jié)構(gòu)或類。
- 結(jié)構(gòu)不能作為其他結(jié)構(gòu)或類的基礎(chǔ)結(jié)構(gòu)。
- 結(jié)構(gòu)可實現(xiàn)一個或多個接口。
- 結(jié)構(gòu)成員不能指定為 abstract、virtual 或 protected。
- 當(dāng)您使用 new 操作符創(chuàng)建一個結(jié)構(gòu)對象時,會調(diào)用適當(dāng)?shù)臉?gòu)造函數(shù)來創(chuàng)建結(jié)構(gòu)。與類不同,結(jié)構(gòu)可以不使用 new 操作符即可被范例化。
- 如果不使用 new 操作符,只有在所有的字段都被初始化之后,字段才被賦值,對象才被使用。
3. 類 vs 結(jié)構(gòu)
類和結(jié)構(gòu)有以下幾個基本的不同點:
- 類是引用類型,結(jié)構(gòu)是值類型。
- 結(jié)構(gòu)不支持繼承。
- 結(jié)構(gòu)不能聲明默認的構(gòu)造函數(shù)。
針對上述討論,讓我們重寫前面的范例:
using system; using system.text; ? ? ? struct books { ? ?private string title; ? ?private string author; ? ?private string subject; ? ?private int book_id; ? ?public void setvalues(string t, string a, string s, int id) ? ?{ ? ? ? title = t; ? ? ? author = a; ? ? ? subject = s; ? ? ? book_id =id; ? ?} ? ?public void display() ? ?{ ? ? ? console.writeline("title : {0}", title); ? ? ? console.writeline("author : {0}", author); ? ? ? console.writeline("subject : {0}", subject); ? ? ? console.writeline("book_id :{0}", book_id); ? ?} }; ? public class teststructure { ? ?public static void main(string[] args) ? ?{ ? ? ? books book1 = new books(); /* 聲明 book1,類型為 books */ ? ? ? books book2 = new books(); /* 聲明 book2,類型為 books */ ? ? ? /* book 1 詳述 */ ? ? ? book1.setvalues("c programming", ? ? ? "nuha ali", "c programming tutorial",6495407); ? ? ? /* book 2 詳述 */ ? ? ? book2.setvalues("telecom billing", ? ? ? "zara ali", "telecom billing tutorial", 6495700); ? ? ? /* 打印 book1 信息 */ ? ? ? book1.display(); ? ? ? /* 打印 book2 信息 */ ? ? ? book2.display(); ? ? ? console.readkey(); ? ?} }
當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:
title : c programming author : nuha ali subject : c programming tutorial book_id : 6495407 title : telecom billing author : zara ali subject : telecom billing tutorial book_id : 6495700