協(xié)同程序是協(xié)同的性質(zhì),可以把兩個(gè)或更多的方法以可控制的方式執(zhí)行。隨著協(xié)同程序,在任何給定的時(shí)間,只有其協(xié)同程序運(yùn)行之一,這在運(yùn)行協(xié)同程序只能暫停其執(zhí)行時(shí),明確要求暫停。
上述定義可能看起來模糊。來告訴它更清楚,假設(shè)我們有兩個(gè)方法,一個(gè)主程序方法和協(xié)同程序。當(dāng)我們使用恢復(fù)功能調(diào)用協(xié)程,其開始執(zhí)行,當(dāng)我們調(diào)用yield功能,暫停執(zhí)行。再次同協(xié)程可以繼續(xù)從它被暫停的另一個(gè)恢復(fù)功能調(diào)用執(zhí)行。這個(gè)過程可以繼續(xù),直到執(zhí)行了協(xié)程的結(jié)束。
協(xié)同程序可用的功能
co = coroutine.create(function (value1,value2)
local tempvar3 =10
print("coroutine section 1", value1, value2, tempvar3)
local tempvar1 = coroutine.yield(value1+1,value2+1)
tempvar3 = tempvar3 + value1
print("coroutine section 2",tempvar1 ,tempvar2, tempvar3)
local tempvar1, tempvar2= coroutine.yield(value1+value2, value1-value2)
tempvar3 = tempvar3 + value1
print("coroutine section 3",tempvar1,tempvar2, tempvar3)
return value2, "end"
end)
print("main", coroutine.resume(co, 3, 2))
print("main", coroutine.resume(co, 12,14))
print("main", coroutine.resume(co, 5, 6))
print("main", coroutine.resume(co, 10, 20))
如之前所提到的,我們使用恢復(fù)功能的動(dòng)作開始,并產(chǎn)生函數(shù)來停止操作。此外,可以看到有由協(xié)程恢復(fù)功能接收多個(gè)返回值。這里將解釋上面的程序每一個(gè)步驟,使之清楚。
讓我們來看一個(gè)簡(jiǎn)單的協(xié)同程序返回一個(gè)數(shù)字,從1到5 yield函數(shù)恢復(fù)功能。它創(chuàng)建協(xié)同程序,如果沒有則恢復(fù)現(xiàn)有的協(xié)程。