lua中使用毫秒精度时间的方法
程序员文章站
2022-04-29 08:31:45
lua自带的时间函数只能到秒的精度。
为了统计到毫秒精度的时间,可以使用luasocket。下载地址
编译安装的时候,你可能需要在源码包根目录下的config文件中指定...
lua自带的时间函数只能到秒的精度。
为了统计到毫秒精度的时间,可以使用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")
上一篇: lua中操作json数据的方法
下一篇: Angular2库初探
推荐阅读
-
在JS中操作时间之getUTCMilliseconds()方法的使用
-
在JavaScript中操作时间之getUTCDate()方法的使用
-
在JavaScript中处理时间之setMinutes()方法的使用
-
JS中处理时间之setUTCMinutes()方法的使用
-
在JavaScript中操作时间之getYear()方法的使用教程
-
在JavaScript中操作时间之setYear()方法的使用
-
PHP中Date()时间日期函数的使用方法小结
-
JS中处理时间之setUTCMinutes()方法的使用
-
在JavaScript中操作时间之setYear()方法的使用
-
在JavaScript中操作时间之getYear()方法的使用教程