你需要我的lua腳本的一些幫助。我有一個腳本在這裏運行一個像應用程序(無限循環)的服務器。這裏的問題是它不執行第二條協程。Lua腳本協程
你能告訴我什麼是錯的謝謝。
function startServer()
print("...Running server")
--run a server like application infinite loop
os.execute("server.exe")
end
function continue()
print("continue")
end
co = coroutine.create(startServer())
co1 = coroutine.create(continue())
如果你想了解更多關於Lua的多任務處理,你可以閱讀我對前一個問題的回答:http://stackoverflow.com/questions/15943785/thread-priorities-in-lua/15944052#15944052 – jbr
從閱讀[PiL]開始(http://www.lua.org/pil/9.html) –