以下是 C# 中的一元運算子 -
+ - ! ~ ++ -- (type)* & sizeof
讓我們了解一下 sizeof 運算子。 sizeof 傳回資料類型的大小。
假設您需要查找int 資料類型的大小-
sizeof(int)
對於雙資料類型-
sizeof(double)
讓我們看看完整的範例來尋找各種資料類型的大小-
即時示範
using System; namespace Demo { class Program { static void Main(string[] args) { Console.WriteLine("The size of int is {0}", sizeof(int)); Console.WriteLine("The size of int is {0}", sizeof(char)); Console.WriteLine("The size of short is {0}", sizeof(short)); Console.WriteLine("The size of long is {0}", sizeof(long)); Console.WriteLine("The size of double is {0}", sizeof(double)); Console.ReadLine(); } } }
The size of int is 4 The size of int is 2 The size of short is 2 The size of long is 8 The size of double is 8
以上是C# 中什麼是一元運算子?的詳細內容。更多資訊請關注PHP中文網其他相關文章!