📜  C#-结构

📅  最后修改于: 2020-12-28 05:06:39             🧑  作者: Mango


在C#中,结构是值类型数据类型。它可以帮助您使单个变量保存各种数据类型的相关数据。 struct关键字用于创建结构。

结构用于表示记录。假设您想跟踪图书馆中的书籍。您可能需要跟踪每本书的以下属性-

  • 标题
  • 作者
  • 学科
  • 书号

定义结构

要定义结构,必须使用struct语句。 struct语句定义了一种新的数据类型,该程序具有多个成员。

例如,这是您可以声明Book结构的方式-

struct Books {
   public string title;
   public string author;
   public string subject;
   public int book_id;
};  

以下程序显示了该结构的用法-

using System;

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;   /* Declare Book1 of type Book */
      Books Book2;   /* Declare Book2 of type Book */

      /* book 1 specification */
      Book1.title = "C Programming";
      Book1.author = "Nuha Ali"; 
      Book1.subject = "C Programming Tutorial";
      Book1.book_id = 6495407;

      /* book 2 specification */
      Book2.title = "Telecom Billing";
      Book2.author = "Zara Ali";
      Book2.subject =  "Telecom Billing Tutorial";
      Book2.book_id = 6495700;

      /* print Book1 info */
      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);

      /* print Book2 info */
      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();
   }
}

编译并执行上述代码后,将产生以下结果-

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

C#结构的特征

您已经使用了一个名为Books的简单结构。 C#中的结构与传统C或C++中的结构有很大不同。 C#结构具有以下功能-

  • 结构可以具有方法,字段,索引器,属性,运算符方法和事件。

  • 结构可以具有定义的构造函数,但不能具有析构函数。但是,您不能为结构定义默认的构造函数。默认构造函数是自动定义的,不能更改。

  • 与类不同,结构不能继承其他结构或类。

  • 结构不能用作其他结构或类的基础。

  • 一种结构可以实现一个或多个接口。

  • 不能将结构成员指定为抽象,虚拟或受保护的成员。

  • 使用New运算符创建结构对象时,将创建该对象并调用适当的构造函数。与类不同,无需使用New运算符就可以实例化结构。

  • 如果未使用New运算符,则这些字段将保持未分配状态,并且在所有字段都初始化之前无法使用该对象。

类与结构

类和结构具有以下基本差异-

  • 类是引用类型,结构是值类型
  • 结构不支持继承
  • 结构不能具有默认构造函数

根据以上讨论,让我们重写前面的示例-

using System;

struct Books {
   private string title;
   private string author;
   private string subject;
   private int book_id;
   
   public void getValues(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();   /* Declare Book1 of type Book */
      Books Book2 = new Books();   /* Declare Book2 of type Book */

      /* book 1 specification */
      Book1.getValues("C Programming",
      "Nuha Ali", "C Programming Tutorial",6495407);

      /* book 2 specification */
      Book2.getValues("Telecom Billing",
      "Zara Ali", "Telecom Billing Tutorial", 6495700);

      /* print Book1 info */
      Book1.display();

      /* print Book2 info */
      Book2.display(); 

      Console.ReadKey();
   }
}

编译并执行上述代码后,将产生以下结果-

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