using static 指令於 2016 年隨著 C# 版本 6 的發布而引入,它允許我們引用靜態成員,而無需命名空間引用,甚至不需要類型引用,並且 using static 指令也可用於引用嵌套類型。例如,透過使用靜態指令,可以透過不引用類別本身來引用控制台類別的靜態成員,這會產生非常簡單而高效的程式碼,並且使用靜態指令還使程式碼更具可讀性,並且類別的靜態成員可以使用static 指令匯入到來源檔案中。
C# 中使用 static 指令的語法如下:
using static <fully-qualified-type-name>;
其中完全限定型別名稱是型別名稱,其靜態且巢狀的成員可以被引用而無需使用型別本身。
考慮下面的範例來解釋 C# 中使用 static 指令的用法:
using System.IO; //using static directive is defined for system.Console using static System.Console; //a class called Check is defined class Check { //Main method is called static void Main() { //WriteLine method is referenced without using the Console class name WriteLine("Welcome to using static directives"); } }
輸出:
在上面的程式中,為系統定義了使用靜態指令。安慰。然後檢查是否定義了類別。然後呼叫main方法。然後,在不使用 Console 類別名稱的情況下引用 WriteLine 方法,因為我們為系統使用了 static 指令。安慰。程式的輸出如上面的快照所示。
以下是下面提到的範例
C# 程式示範在程式中使用 static 指令的用法
代碼:
//using static directive for system.console using static System.Console; //using static directive for system.math using static System.Math; //using static directive for system.string using static System.String; //a namespace called Features is defined namespace Features { //a class called import is defined class Import { //main method is called public static void Main(string[] args) { //the sqrt method is called without referencing math class because using static directive is used for system.math double sqroot = Sqrt(64); //the concat method is called without referencing math class because using static directive is used for system.string string newString = Concat("Learning"," is fun"); //the writeline method is called without referencing math class because using static directive is used for system.console WriteLine(sqroot); WriteLine(newString); } } }
輸出:
在上面的程式中,我們為 system.console 使用了 static 指令。然後我們為 system.math 使用了 static 指令。然後我們對 system.string 使用了 static 指令。然後定義一個名為 Features 的命名空間。然後定義一個名為 import 的類別。然後呼叫main方法。然後呼叫 sqrt 方法而不引用數學類,因為 system.math 使用了 using static 指令。然後呼叫 concat 方法而不引用數學類,因為 using static 指令用於 system.string。然後呼叫 writeline 方法而不引用數學類,因為 using static 指令用於 system.console。程式的輸出如上面的快照所示。
C# 程式示範在程式中使用 static 指令的用法
代碼:
using System; //using static directive for system.console using static System.Console; //using static directive for system.string using static System.String; //a class called check is defined class check { //main method is called public static void Main(string[] args) { //the writeline method is called without referencing math class because using static directive is used for system.console WriteLine("Check if the given number is positive or negative or zero:"); //a variable number is defined int number = 10; //Comparison operator is used to check if the number is greater than zero if (number > 0) //the writeline method is called without referencing math class because using static directive is used for system.console WriteLine("Positive number"); //Comparison operator is used to check if the number is equal to zero else if (number == 0) //the writeline method is called without referencing math class because using static directive is used for system.console WriteLine("Zero"); else //the writeline method is called without referencing math class because using static directive is used for system.console WriteLine("Negative number"); } }
輸出:
在上面的程式中,我們為 system.console 使用了 static 指令。然後我們對 system.string 使用了 static 指令。然後定義一個名為check的類別。然後呼叫main方法。然後呼叫 writeline 方法而不引用數學類,因為 using static 指令用於 system.console。然後定義一個變數編號,該編號被指派給該編號,需要檢查該編號是正數、負數或零。然後使用比較運算子檢查數字是否大於零、小於零或等於零。程式的輸出如上面的快照所示。
有以下幾個優點:
在本教程中,我們透過定義了解在 C# 中使用 static 指令的概念、在 C# 中使用 static 指令的語法、透過程式設計範例及其輸出來了解使用 static 指令的工作原理。
以上是C# 使用靜態的詳細內容。更多資訊請關注PHP中文網其他相關文章!