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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。