博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lua 按拉分析与合成
阅读量:5947 次
发布时间:2019-06-19

本文共 945 字,大约阅读时间需要 3 分钟。

-- 将数值分解成bytes_tablelocal function decompose_byte(data)    if not data then        return data    end    local tb = {}    if data == 0 then        table.insert(tb, 0)        return tb    end    local idx = 1    while data > 0 do        table.insert(tb, math.mod(data, 2))        data = math.floor(data/2)    end    return tb;end-- 按位合成一个数值local function synthesize_byte(bytes_table)    local data = 0;    for i,v in ipairs(bytes_table) do        data = data + math.pow(2, i - 1) * bytes_table[i]    end    return dataend-- 使用方法local function show_bytes(t)    local str = ""    for i,v in ipairs(t) do        str = tostring(v) .. str;    end    print(str)endlocal tb = decompose_byte(11)show_bytes(tb);print(synthesize_byte(tb))local str = string.format("%c%c", 255, 98)print(str, #str)tb = decompose_byte(string.byte(str, 1))show_bytes(tb)print(synthesize_byte(tb))tb = decompose_byte(string.byte(str, 2))show_bytes(tb)print(synthesize_byte(tb))

 

转载地址:http://vhfxx.baihongyu.com/

你可能感兴趣的文章
JSON and Microsoft Technologies(翻译)
查看>>
ylbtech-LanguageSamples-ConditionalMethods(条件方法)
查看>>
js 判断各种数据类型
查看>>
【leetcode】Find Peak Element ☆
查看>>
linux:sed高级命令之n、N(转)
查看>>
触发器更新多条数据
查看>>
微信公众平台原创声明功能公测 自媒体原创保护的福音
查看>>
ADF_Advanced ADF系列2_Fusion应用的客制和个性化(Part2)
查看>>
php_linux_centos6.4_安装mysql_apache_php
查看>>
Myeclipse或Eclipse中搭建Easyui环境
查看>>
java的基本数据类型
查看>>
WPF中的CheckBox的_ (underscore / 下划线)丢失
查看>>
正则表达式匹配数字
查看>>
前端模块化
查看>>
QIBO CMS SQL Injection Via Variable Uninitialization In \member\special.php
查看>>
二维数组---模拟斗地主
查看>>
【转】(DT系列六)devicetree中数据和 struct device有什么关系
查看>>
【前端性能】必须要掌握的原生JS实现JQuery
查看>>
mysql系统变量
查看>>
svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted
查看>>