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


Processing byte用法及代碼示例


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