首頁  >  文章  >  後端開發  >  C# 中什麼是一元運算子?

C# 中什麼是一元運算子?

PHPz
PHPz轉載
2023-09-07 10:05:021453瀏覽

C# 中什么是一元运算符?

以下是 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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除