Processing, int
用法介紹。
用法
int var
int var = value
參數
var
引用值的變量名value
任何整數值
說明
整數的數據類型,沒有小數點的數字。整數可以大到 2,147,483,647,小到 -2,147,483,648。它們存儲為 32 位信息。第一次寫入變量時,必須使用表達其數據類型的語句來聲明它。此變量的後續使用不得引用該數據類型,因為處理會認為該變量正在再次聲明。
例子
int a; // Declare variable 'a' of type int
a = 23; // Assign 'a' the value 23
int b = -256; // Declare variable 'b' and assign it the value -256
int c = a + b; // Declare variable 'c' and assign it the sum of 'a' and 'b'
有關的
相關用法
- Processing int()用法及代碼示例
- Processing imageMode()用法及代碼示例
- Processing image()用法及代碼示例
- Processing import用法及代碼示例
- Processing implements用法及代碼示例
- Processing if用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing FloatDict.sub()用法及代碼示例
- Processing String用法及代碼示例
- Processing PImage.pixels[]用法及代碼示例
- Processing vertex()用法及代碼示例
- Processing PVector.mag()用法及代碼示例
- Processing thread()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 int。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。