黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C# 結(jié)構(gòu)體 Struct

c# 結(jié)構(gòu)體 struct

在 c# 中,結(jié)構(gòu)體是值類型數(shù)據(jù)結(jié)構(gòu)。它使得一個(gè)單一變量可以存儲(chǔ)各種數(shù)據(jù)類型的相關(guān)數(shù)據(jù)。struct 關(guān)鍵字用于創(chuàng)建結(jié)構(gòu)體。

結(jié)構(gòu)體是用來代表一個(gè)記錄。假設(shè)您想跟蹤圖書館中書的動(dòng)態(tài)。您可能想跟蹤每本書的以下屬性:

  • title
  • author
  • subject
  • book id

 

1. 定義結(jié)構(gòu)體

為了定義一個(gè)結(jié)構(gòu)體,您必須使用 struct 語句。struct 語句為程序定義了一個(gè)帶有多個(gè)成員的新的數(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í)行時(shí),它會(huì)產(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)的特點(diǎn)

您已經(jīng)用了一個(gè)簡(jiǎn)單的名為 books 的結(jié)構(gòu)。在 c# 中的結(jié)構(gòu)與傳統(tǒng)的 c 或 c++ 中的結(jié)構(gòu)不同。c# 中的結(jié)構(gòu)有以下特點(diǎn):

  • 結(jié)構(gòu)可帶有方法、字段、索引、屬性、運(yùn)算符方法和事件。
  • 結(jié)構(gòu)可定義構(gòu)造函數(shù),但不能定義析構(gòu)函數(shù)。但是,您不能為結(jié)構(gòu)定義無參構(gòu)造函數(shù)。無參構(gòu)造函數(shù)(默認(rèn))是自動(dòng)定義的,且不能被改變。
  • 與類不同,結(jié)構(gòu)不能繼承其他的結(jié)構(gòu)或類。
  • 結(jié)構(gòu)不能作為其他結(jié)構(gòu)或類的基礎(chǔ)結(jié)構(gòu)。
  • 結(jié)構(gòu)可實(shí)現(xiàn)一個(gè)或多個(gè)接口。
  • 結(jié)構(gòu)成員不能指定為 abstract、virtual 或 protected。
  • 當(dāng)您使用 new 操作符創(chuàng)建一個(gè)結(jié)構(gòu)對(duì)象時(shí),會(huì)調(diào)用適當(dāng)?shù)臉?gòu)造函數(shù)來創(chuàng)建結(jié)構(gòu)。與類不同,結(jié)構(gòu)可以不使用 new 操作符即可被范例化。
  • 如果不使用 new 操作符,只有在所有的字段都被初始化之后,字段才被賦值,對(duì)象才被使用。

 

3. 類 vs 結(jié)構(gòu)

類和結(jié)構(gòu)有以下幾個(gè)基本的不同點(diǎn):

  • 類是引用類型,結(jié)構(gòu)是值類型。
  • 結(jié)構(gòu)不支持繼承。
  • 結(jié)構(gòu)不能聲明默認(rèn)的構(gòu)造函數(shù)。

針對(duì)上述討論,讓我們重寫前面的范例:

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í)行時(shí),它會(huì)產(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

下一節(jié):c# 枚舉 enum

c# 教程

相關(guān)文章