Luaでsleep関数を実装する4つの方法
2022-02-13 19:48:42
残念ながら、Luaには組み込みのsleep関数がないので、DIYする必要があります。sleep関数を実装する方法は、以下の4つです。
方法1
コピーコード
コードは以下の通りです。
--sets an exit condition in a dead loop, but this takes up a lot of CPU resources and is strongly discouraged
function sleep(n)
local t0 = os.clock()
while os.clock() - t0 <= n do end
end
方法2
コピーコード
コードは以下の通りです。
--calls the system sleep function, which does not consume CPU, but this command is not built-in in Windows (if you install Cygwin again, it is fine). It is recommended to use this method on Linux systems
function sleep(n)
os.execute("sleep " . n)
end
方法3
コピーコード
コードは以下の通りです。
-- Although Windows does not have a built-in sleep command, we can take a little advantage of the nature of the ping command
function sleep(n)
if n > 0 then os.execute("ping -n " . tonumber(n + 1) ... " localhost > NUL") end
end
方法4
コピーコード
コードは以下の通りです。
--Using the select function in the socket library, you can pass 0.1 to n to make the hibernation time accurate to the millisecond level.
require("socket")
function sleep(n)
socket.select(nil, nil, n)
end
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
Luaの一次元配列と多次元配列の使用例
-
Luaオブジェクト指向プログラミング。基本構造表の簡単な例
-
.soファイルを呼び出すためのNginx+lua
-
Lua Observerパターンの解析 イベント配信システム構築のためのベストプラクティス
-
Luaのプログラミング例(4)。テーブルライブラリ、文字列ライブラリ、システムライブラリからなるLua標準ライブラリ
-
WindowsでのLuaのインストールと環境設定
-
Lua math.fmodの小数点以下の桁数問題
-
LuaアプリケーションでSQLiteを使用するためのチュートリアル
-
Luaでモジュールを使用するための基本的なチュートリアル
-
ifの使い方を説明する ... else文の使い方