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


Processing long用法及代码示例


Processing, long用法介绍。

用法

  • long var
  • long var = value

参数

  • var 引用值的变量名
  • value 任何整数值

说明

大整数的数据类型。虽然整数可以大到 2,147,483,647,小到 -2,147,483,648(存储为 32 位),但 long 整数的最小值为 -9,223,372,036,854,775,808,最大值为 9,223,372,036,854,775,807(存储为 64 位)。当您需要一个比 int 中可以存储的数字更大的数字时,请使用此数据类型。当分配大于此数量级的文字值时,还需要将限定符 "L" 附加到数字,如上例所示。处理函数不使用此数据类型,因此当它们在该语言中工作时,您通常必须在传递给函数之前使用(int) 语法转换为int

例子

long a;           // Declare variable 'a' of type long and assign a large value:
//a = 2147483648; // Error: The literal of type int is out of range
a = 2147483648L;  // Instead, add an "L" to the number to mark it as a long

long b = -256;    // Declare variable 'b' and assign it the value -256
long c = a + b;   // Declare variable 'c' and assign it the sum of 'a' and 'b'
int i = (int)c;   // Converts the value of 'c' from a long to an int

有关的

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 long。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。