Processing, byte
用法介紹。
用法
byte var
byte var = value
參數
var
引用值的變量名value
介於 127 到 -128 之間的數字
說明
字節的數據類型,8 位信息存儲從 127 到 -128 的數值。字節是一種方便的數據類型,用於向串行端口發送信息和從串行端口發送信息,並以比char
數據類型更簡單的格式表示字母。第一次寫入變量時,必須使用表達其數據類型的語句來聲明它。此變量的後續使用不得引用該數據類型,因為處理會認為該變量正在再次聲明。
例子
// Declare variable 'a' of type byte
byte a;
// Assign 23 to 'a'
a = 23;
// Declare variable 'b' and assign it the value -128
byte b = -128;
// Declare variable 'c' and assign it the sum of 'a' and 'b'.
// By default, when two bytes are added, they are converted
// to an integer. To keep the answer as a byte, cast them
// to a byte with the byte() conversion function
byte c = byte(a + b);
相關用法
- Processing byte()用法及代碼示例
- Processing box()用法及代碼示例
- Processing beginShape()用法及代碼示例
- Processing bezierPoint()用法及代碼示例
- Processing binary()用法及代碼示例
- Processing blendMode()用法及代碼示例
- Processing beginRaw()用法及代碼示例
- Processing boolean()用法及代碼示例
- Processing break用法及代碼示例
- Processing boolean用法及代碼示例
- Processing beginRecord()用法及代碼示例
- Processing bezierDetail()用法及代碼示例
- Processing background()用法及代碼示例
- Processing brightness()用法及代碼示例
- Processing bezierVertex()用法及代碼示例
- Processing blue()用法及代碼示例
- Processing bezierTangent()用法及代碼示例
- Processing beginCamera()用法及代碼示例
- Processing bezier()用法及代碼示例
- Processing blend()用法及代碼示例
- Processing beginContour()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 byte。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。