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 中国語 Web サイトの他の関連記事を参照してください。