【c#教程】C# 命名空間(Namespace)

來源:互聯網
上載者:User

C# 命名空間(Namespace)

命名空間的設計目的是為了提供一種讓一組名稱與其他名稱分隔開的方式。在一個命名空間中聲明的類的名稱與另一個命名空間中聲明的相同的類的名稱不衝突。

定義命名空間

命名空間的定義是以關鍵字 namespace 開始,後跟命名空間的名稱,如下所示:

namespace namespace_name{   // 代碼聲明}

為了調用支援命名空間版本的函數或變數,會把命名空間的名稱置於前面,如下所示:

namespace_name.item_name;

下面的程式示範了命名空間的用法:

using System;namespace first_space{   class namespace_cl   {      public void func()      {         Console.WriteLine("Inside first_space");      }   }}namespace second_space{   class namespace_cl   {      public void func()      {         Console.WriteLine("Inside second_space");      }   }}   class TestClass{   static void Main(string[] args)   {      first_space.namespace_cl fc = new first_space.namespace_cl();      second_space.namespace_cl sc = new second_space.namespace_cl();      fc.func();      sc.func();      Console.ReadKey();   }}

當上面的代碼被編譯和執行時,它會產生下列結果:

Inside first_spaceInside second_space

using 關鍵字

using 關鍵字表明程式使用的是給定命名空間中的名稱。例如,我們在程式中使用 System 命名空間,其中定義了類 Console。我們可以唯寫:

Console.WriteLine ("Hello there");

我們可以寫完全限定名稱,如下:

System.Console.WriteLine("Hello there");

您也可以使用 using 命名空間指令,這樣在使用的時候就不用在前面加上命名空間名稱。該指令告訴編譯器隨後的代碼使用了指定命名空間中的名稱。下面的代碼延時了命名空間的應用。

讓我們使用 using 指定重寫上面的執行個體:

using System;using first_space;using second_space;namespace first_space{   class abc   {      public void func()      {         Console.WriteLine("Inside first_space");      }   }}namespace second_space{   class efg   {      public void func()      {         Console.WriteLine("Inside second_space");      }   }}   class TestClass{   static void Main(string[] args)   {      abc fc = new abc();      efg sc = new efg();      fc.func();      sc.func();      Console.ReadKey();   }}

當上面的代碼被編譯和執行時,它會產生下列結果:

Inside first_spaceInside second_space

嵌套命名空間

命名空間可以被嵌套,即您可以在一個命名空間內定義另一個命名空間,如下所示:

namespace namespace_name1 {   // 代碼聲明   namespace namespace_name2    {     // 代碼聲明   }}

您可以使用點(.)運算子訪問嵌套的命名空間的成員,如下所示:

using System;using first_space;using first_space.second_space;namespace first_space{   class abc   {      public void func()      {         Console.WriteLine("Inside first_space");      }   }   namespace second_space   {      class efg      {         public void func()         {            Console.WriteLine("Inside second_space");         }      }   }   } class TestClass{   static void Main(string[] args)   {      abc fc = new abc();      efg sc = new efg();      fc.func();      sc.func();      Console.ReadKey();   }}

當上面的代碼被編譯和執行時,它會產生下列結果:

Inside first_spaceInside second_space

以上就是【c#教程】C# 命名空間(Namespace)的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.