lua使用毫秒精度时间 lua中使用毫秒精度时间的方法
人气:7想了解lua中使用毫秒精度时间的方法的相关内容吗,在本文为您仔细讲解lua使用毫秒精度时间的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:lua,使用毫秒精度时间,下面大家一起来学习吧。
lua自带的时间函数只能到秒的精度。
为了统计到毫秒精度的时间,可以使用luasocket。下载地址https://m.qb5200.com/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")
update:
如果对精度的要求不需要到毫秒级别,可以用自带的os模块.精度为0.01秒
复制代码 代码如下:
local s = os.clock()
local e = os.clock()
print("used time"..e-s.." seconds")
加载全部内容