当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Int64和UInt64的区别用法及代码示例


整型64struct 用于表示 64 位有符号整数。这整型64可以存储两种类型的值,包括范围之间的负值和正值-9,223,372,036,854,775,808 至 +9, 223,372,036,854,775,807

例子:

C#


// C# program to show the 
// difference between Int64 
// and UInt64 
  
using System; 
using System.Text; 
  
public
class GFG { 
  
  // Main Method 
  static void Main(string[] args) { 
  
    // printing minimum & maximum values 
    Console.WriteLine("Minimum value of Int64: " 
                      + Int64.MinValue); 
    Console.WriteLine("Maximum value of Int64: " 
                      + Int64.MaxValue); 
    Console.WriteLine(); 
  
    // Int64 array 
    Int64[] arr1 = {-3, 0, 1, 3, 7}; 
  
    foreach (Int64 i in arr1) 
    {  
      Console.WriteLine(i); 
    } 
  } 
}

输出:

Minimum value of Int64: -9223372036854775808
Maximum value of Int64: 9223372036854775807

-3
0
1
3
7

UInt64struct 用于表示 64 位无符号整数。这UInt64只能存储正值,其范围为0 至18,446,744,073,709,551,615。

例子:

C#


// C# program to show the  
// difference between Int64  
// and UInt64 
  
using System; 
using System.Text; 
  
public class GFG{ 
      
    // Main Method 
    static void Main(string[] args) 
    { 
  
        //printing minimum & maximum values 
        Console.WriteLine("Minimum value of UInt64: "
                          + UInt64.MinValue); 
        Console.WriteLine("Maximum value of UInt64: "
                          + UInt64.MaxValue); 
        Console.WriteLine(); 
          
        //Int64 array 
        UInt64[] arr1 = { 13, 0, 1, 3, 7}; 
          
        foreach (UInt64 i in arr1) 
        { 
            Console.WriteLine(i); 
        } 
    } 
}

输出:

Minimum value of UInt64: 0
Maximum value of UInt64: 18446744073709551615

13
0
1
3
7

C# 中 Int64 和 UInt64 的区别

Sr.No

INT64

UINT64

1.

整型64用于表示64位有符号整数。 UInt64用于表示64位无符号整数。

2.

整型64代表有符号整数。 UInt64代表无符号整数。

3.

它可以存储负整数和正整数。 它只能存储正整数。

4.

需要8-字节内存中的空间。 也需要8-字节内存中的空间。

5.

T他的范围整型64来自-9223372036854775808 至 +9223372036854775807。 UInt64 的范围是0 到 18446744073709551615。

6.

声明 Int64 的语法:

Int64 variable_name;

声明 UInt64 的语法:

UInt64 variable_name;


相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Difference between Int64 and UInt64 in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。