我想对数字中的特定位执行设置和重置。由于我使用的是 lua 5.1,所以我无法使用 API 和移位运算符,所以它变得越来越复杂,所以请帮我找到这个
问问题
223 次
2 回答
2
bit
库随固件一起提供。
阅读文档:https ://nodemcu.readthedocs.io/en/release/modules/bit/
于 2020-11-12T10:33:47.267 回答
0
如果您知道要翻转的位的位置,则可以在没有外部库的情况下执行此操作。
#! /usr/bin/env lua
local hex = 0xFF
local maxPos = 7
local function toggle( num, pos )
if pos < 0 or pos > maxPos then print( 'pick a valid pos, 0-' ..maxPos )
else
local bits = {} -- populate emtpy table
for i=1, maxPos do bits[i] = false end
for i = maxPos, pos +1, -1 do -- temporarily throw out the high bits
if num >= 2 ^i then
num = num -2 ^i
bits [i +1] = true
end
end
if num >= 2 ^pos then num = num -2 ^pos -- flip desired bit
else num = num +2 ^pos
end
for i = 1, #bits do -- add those high bits back in
if bits[i] then num = num +2 ^(i -1) end
end
end ; print( 'current value:', num )
return num
end
original value: 255
current value: 127
pick a valid pos, 0-7
current value: 127
current value: 255
于 2020-11-12T12:26:24.740 回答