首頁 > 後端開發 > C#.Net教程 > C# 中什麼是一元運算子?

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

PHPz
發布: 2023-09-07 10:05:02
轉載
1479 人瀏覽過

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板