快速入門C#編程之struct和class對比

來源:互聯網
上載者:User

標籤:c#   struct   class   

1、下面是一個結構的定義:

public struct Point{public int X { get; set; }public int Y { get; set; }}

什麼時候用結構:

  • 用於小型的資料結構
  • 其中的值一般不修改

2、類的定義:
public class Animal{public string Name { get; set; }public double Weight { get; private set; }private string _color;public string Color{get { return _color; }set { _color = value; }}public void MakeSound(){Console.WriteLine(Sound); }}

3、結構和類的一個區別:現在上面兩個都沒有顯式的建構函式,如果給它們加上顯式的建構函式:
public struct Point{public int X { get; set; }public int Y { get; set; }public Point(int X, int Y){this.X = X;this.Y = Y;}}

如果我們進行執行個體化,可以發現隱式建構函式仍然可用:
Point p = new Point();Point P = new Point(10, 12);

但同時我們就不能在結構中再定義一個無參數的建構函式了。而對於類,如果我們沒有為類寫任意的建構函式,那麼C#編譯器在編譯的時候會自動的為這個類產生一個無參數的建構函式,但是一旦我們為這個類寫了任意的一個建構函式的時候,這個隱式的建構函式就不會自動產生了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.