當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。