Note You can check other posts on my personal website: https://hbolajraf.net
在 C# 中,short 是用來宣告 16 位元有符號整數資料型別的關鍵字。它是一種原始資料類型,可以儲存 -32,768 到 32,767 範圍內的整數。
short variableName;
using System; class ShortExample { static void Main() { // Declare a short variable short myShort = 3000; Console.WriteLine("Value of myShort: " + myShort); // Perform arithmetic operations short result = (short)(myShort + 2000); Console.WriteLine("Result after addition: " + result); // Overflow example short maxShort = short.MaxValue; Console.WriteLine("Max value of short: " + maxShort); // Overflow will occur short overflowedResult = (short)(maxShort + 1); Console.WriteLine("Overflowed result: " + overflowedResult); } }
在上面的例子中:
要注意的是,在執行可能導致上溢或下溢的算術運算時,需要明確轉換以避免編譯錯誤。
綜上所述,C# 中的 Short 關鍵字對於優先考慮記憶體效率且取值範圍在 16 位元有符號整數限制內的場景很有用。
以上是C# |短關鍵字的使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!