bitWrite()

描述

对一个数字中的某个位元写值。

语法


bitWrite(x, n, b)

参数

x: 要写入的数字。
n: 指定写入的位元,从 0 开始算起,而 0 则对应最低有效位 (最右边的位元)。
b: 要写入的位元值 (0 或 1)。

回传

无回传值

See also

bit()
bitRead()
bitSet()
bitClear()


语法参考主页面

本页由热血青年 LBU 译自英文版。

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.