1
基本上問題是:我會得到與yield new WaitForEndOfFrame();
相同的結果,還是應該避免這種情況?我可以緩存WaitForEndOfFrame,還是應該每次使用yield new?
緩存:YieldInstruction waitForUpdate = new WaitForEndOfFrame();
使用:yield return waitForUpdate;
基本上問題是:我會得到與yield new WaitForEndOfFrame();
相同的結果,還是應該避免這種情況?我可以緩存WaitForEndOfFrame,還是應該每次使用yield new?
緩存:YieldInstruction waitForUpdate = new WaitForEndOfFrame();
使用:yield return waitForUpdate;
你絕對可以。避免不必要的內存分配是非常有用的。
你從測試中得到了什麼結果? – rhughes 2014-10-02 12:07:17
似乎按預期工作。 – Revolter 2014-10-02 12:14:26