首页 > 编程知识 正文

c# long long_C#中的long关键字

时间:2023-05-05 13:18:05 阅读:267673 作者:713

c# long long

C#uint关键字 (C# uint keyword)

In C#, long is a keyword which is used to declare a variable that can store a signed integer value between the range of -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. long keyword is an alias of System.Int64.

在C#中, long是一个关键字,用于声明一个变量,该变量可以存储介于-9,223,372,036,854,775,808到9,223,372,036,854,775,807之间的有符号整数值。 long关键字是System.Int64的别名。

It occupies 8 bytes (64 bits) space in the memory.

它在内存中占用8个字节(64位)的空间。

Syntax:

句法:

long variable_name = value; C#代码演示long关键字的示例 (C# code to demonstrate example of long keyword)

Here, we are declaring a long variable num, initializing it with the value 12345 and printing its value, type and size of a long type variable.

在这里,我们声明一个长变量num ,使用值12345对其进行初始化,并打印其值,类型和长型变量的大小。

using System;using System.Text;namespace Test{ class Program { static void Main(string[] args) { //variable declaration long num = 12345; //printing value Console.WriteLine("num: " + num); //printing type of variable Console.WriteLine("Type of num: " + num.GetType()); //printing size Console.WriteLine("Size of a long variable: " + sizeof(long)); //printing minimum & maximum value of long Console.WriteLine("Min value of long: " + long.MinValue); Console.WriteLine("Max value of long: " + long.MaxValue); //hit ENTER to exit Console.ReadLine(); } }}

Output

输出量

num: 12345Type of num: System.Int64Size of a long variable: 8Min value of long: -9223372036854775808Max value of long: 9223372036854775807

翻译自: https://www.includehelp.com/dot-net/long-keyword-in-c-sharp.aspx

c# long long

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。