function Sleep(n)
local t0 = os.clock()
while os.clock() - t0 <= n do end
调用系统的Sleep函数,不消耗CPU,但是Windows系统中没有内置这个命令(或者使用Cygwin),推荐在Linux系统中使用该方法.
function Sleep(n)
os.execute("sleep " .. n)
虽然Windows没有内置Sleep命令,但是利用ping命令的性质.
function Sleep(n)
if n > 0 then os.execute("ping -n " .. tonumber(n + 1) .. " localhost > NUL") end
使用socket库中select函数,可以传递0.1给n,使得休眠的时间精度达到毫秒级别.
require("socket")
function Sleep(n)
socket.select(nil, nil, n)
转自:http://blog.csdn.net/charlie_2010/article/details/6719891