TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# Int and uint Types

Evaluate the int and uint types. Use the 4-byte integer type in a program.
Int and uint. Think of the smallest thing you can touch—like the head of a pin. It takes a great deal of effort to deal with tiny things. A larger thing, like a wrench, is easier to use.
In computer programs, a larger, standard type (like int) is easier to access than a smaller one (like a bit). Int has advantages. It has optimized performance.int.Parse
Int example. Here we use ints in a variety of ways, and also test their physical characteristics (memory usage). We use Console.WriteLine to write the integer to the screen.

Part A: We declare and assign an int. It will be placed into a local variable slot in the stack memory.

Part B: You can compare 2 integers (variables or values) using the == (equality) operator. This compares all the bits for equivalence.

Part C: The int type also has MinValue and MaxValue properties. These are useful for when you want to loop through all integers.

int.MaxValue

Part D: This part of the program shows that each integer, when allocated as part of an array, will occupy 4 bytes.

Array
C# program that uses an int type using System; class Program { static void Main() { // Part A: demonstrate an int value type. int number = 11; Console.WriteLine(number); number = -1; // Can be negative Console.WriteLine(number); // Part B: use operators. Console.WriteLine(number == -1); Console.WriteLine(number + 100); Console.WriteLine(number.GetType()); Console.WriteLine(typeof(int)); // Part C: get minimum and maximum. Console.WriteLine(int.MinValue); Console.WriteLine(int.MaxValue); // Part B: find the memory usage for an int in an array. long bytes1 = GC.GetTotalMemory(false); int[] array = new int[1000 * 1000]; array[0] = 1; long bytes2 = GC.GetTotalMemory(false); Console.WriteLine(((bytes2 - bytes1) / (1000 * 1000)) .ToString("0 bytes per int")); } } Output 11 -1 True 99 System.Int32 System.Int32 -2147483648 2147483647 4 bytes per int
Minimum, maximum. Here we consider both Int32 and UInt32, the unsigned int type. With int we can go negative, but with uint we have a higher maximum.
System.Int32 information: int.MinValue = -2147483648 int.MaxValue = 2147483647 System.UInt32 information: uint.MinValue = 0 uint.MaxValue = 4294967295
Int arguments. We use int as a parameter. You can pass a variable or a constant to the method that uses an integer parameter. An int argument is a common type.

Copied: The arguments are copied to the new method whenever it is called, but this cost is reduced when functions are inlined.

AggressiveInlining

IsOdd: The program shows the boolean method pattern. This can help simplify complex tests.

Odd, Even
C# program that uses int argument to method using System; class Program { static void Main() { // Use integer type as argument to method. bool result = IsOdd(1); Console.WriteLine(result); // Test call the method with different integers. result = IsOdd(6); Console.WriteLine(result); result = IsOdd(100); Console.WriteLine(result); result = IsOdd(101); Console.WriteLine(result); } static bool IsOdd(int number) { // Use the integer parameter in the method body. return number % 2 != 0; } } Output True False False True
Uint example. Uint is similar to int, but reserves no space for the sign. Unsigned integers can be used through many programs. With uint we can increase the bounds of a loop.

Alias: The uint type is the same as the System.UInt32 type in the System namespace. This alias provides for clearer code in programs.

Namespace

Tip: When code that uses uint is executed, it is allocated in the method's stack. No dynamic heap allocation is done. This is efficient.

Typeof: The program displays the System.Type object for the 2 numeric types. This shows the struct that uint aliases to.

Sign bit: Uints lack the sign bit that, when set, makes a number equal a negative value.

const
C# program that uses uint type using System; class Program { static void Main() { // Declare example unsigned and signed integers. uint value1 = 100; int value2 = 100; // Display values. Console.WriteLine(value1); Console.WriteLine(value2); // Assign the maximum values. uint max1 = uint.MaxValue; int max2 = int.MaxValue; // Display maximum values. Console.WriteLine(max1); Console.WriteLine(max2); // Assign the minimum values. uint min1 = uint.MinValue; int min2 = int.MinValue; // Write the minimum values. Console.WriteLine(min1); Console.WriteLine(min2); // Write the types. Console.WriteLine(typeof(uint)); Console.WriteLine(typeof(int)); } } Output 100 100 4294967295 2147483647 0 -2147483648 System.UInt32 System.Int32
Int errors. If you try to assign an int variable in your program to a numeric literal that is too big, the C# compiler will give you a compile-time error.

So: For example, try compiling the code "int value1 = 3000000000". The C# compiler will give the error here.

Tip: If you change the "int" type to "uint", your program will compile successfully.

C# program that causes int error class Program { static void Main() { int value1 = 3000000000; } } Output Error CS0266 Cannot implicitly convert type 'uint' to 'int'. An explicit conversion exists (are you missing a cast?)
Null int. An int can never be null. But we can use a nullable int, which is a struct that wraps around an int value, to represent a null int.

Info: A nullable int can be tested directly against null. This makes it different from a class instance that has an int field.

NullableClass
C# program that uses nullable int using System; class Program { static void Main() { // A nullable int can be a number, or null. int? test = 100; Console.WriteLine("Value is {0}", test.Value); test = null; Console.WriteLine("Null: {0}", test == null); } } Output Value is 100 Null: True
Int parse. Often a string contains characters that could be represented in an int variable. We can convert the string into an int with the int.Parse or int.TryParse methods.
Int performance. As a field in a class, an int requires 4 bytes. But a smaller type (byte) may be sufficient for small numbers. This may improve spatial locality.Byte

So: If your program needs to store many thousands of integers in memory, a more compact type that requires less memory would be faster.

And: More compact types include the byte type, short type or ushort type. These can be packed together.

Int, short performance. Incrementing an int as a loop variable is faster than using a short or ushort (see the linked benchmark). Use int in local variables when possible.short, ushort
A summary. Int is found in almost every program (uint is less common). Int is exceedingly useful and simple to understand. It can be considered the default number type.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf