C# の単項演算子は次のとおりです -
+ - ! ~ ++ -- (type)* & sizeof
sizeof 演算子について理解しましょう。 sizeof はデータ型のサイズを返します。
int データ型のサイズを見つける必要があるとします -
sizeof(int)
double データ型の場合 -
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 中国語 Web サイトの他の関連記事を参照してください。