"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > C# | Use of the short Keyword

C# | Use of the short Keyword

Published on 2024-07-29
Browse:640

C# | Use of the short Keyword

Note
You can check other posts on my personal website: https://hbolajraf.net

In C#, short is a keyword used to declare a 16-bit signed integer data type. It is a primitive data type that can store whole numbers in the range of -32,768 to 32,767.

Syntax

short variableName;

Example

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);
    }
}

In the example above:

  • We declare a short variable named myShort and initialize it with the value 3000.
  • Perform addition on myShort and display the result.
  • Illustrate the concept of overflow by attempting to add 1 to the maximum value of short, resulting in an overflow.

It's important to note that when performing arithmetic operations that may lead to overflow or underflow, explicit casting is required to avoid compilation errors.

Use Cases

  • When memory optimization is crucial, and the range of values to be stored is within the limits of a 16-bit signed integer.
  • Situations where the storage of larger integer values is not required, saving memory compared to int or long.

What Next?

In summary, the short keyword in C# is useful for scenarios where memory efficiency is a priority, and the range of values falls within the limits of a 16-bit signed integer.

Release Statement This article is reproduced at: https://dev.to/hbolajraf/c-use-of-the-short-keyword-2pp4 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3