lua使用毫秒

来源:互联网 发布:本网络禁止共享上网 编辑:程序博客网 时间:2024/05/22 06:16

lua自带的时间函数只能到秒的精度。

为了统计到毫秒精度的时间,可以使用luasocket。下载地址http://files.luaforge.net/releases/luasocket/luasocket

编译安装的时候,你可能需要在源码包根目录下的config文件中指定LUAINC变量为你的lua路径。

代码如下:

local socket = require "socket"
local t0 = socket.gettime()
-- do something
local t1 = socket.gettime()
print("used time: "..t1-t0.."ms")

gettime精确到了小数点后4位,如;1459220581.1674

如果对精度的要求不需要到毫秒级别,可以用自带的os模块.精度为0.01秒

代码如下:

local s = os.clock()
local e = os.clock()
print("used time"..e-s.." seconds")
0 0