当前位置:   article > 正文

Untiy中 Task 与多线程_unity task

unity task

结论:在Unity 中使用 Task 作为返回值并不会开启新的线程,调用方为主线程;如果是自己创建了Task 对象 即:new Task()则会新开辟一条线层进行处理。

测试场景1:  使用两个异步函数进行修改同一个变量,同时在异步函数之后进行 Main Thread 的 Id ,代码如下

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Threading;
  4. using System.Threading.Tasks;
  5. using UnityEngine;
  6. using UnityFx.Async;
  7. public class TestAsync2 : MonoBehaviour
  8. {
  9. private int TestLog;
  10. private int Len = 5;
  11. private void Start()
  12. {
  13. Task t1 = Modify1();//主线程中执行,遇到 await 即可转交执行权
  14. Task t2 = Modify2();//主线程中执行,遇到 await 即可转交执行权
  15. Debug.LogError("Main Thread >>> " + System.Threading.Thread.CurrentThread.ManagedThreadId);
  16. }
  17. private async Task Modify1() {
  18. for(int i=0; i< Len; i++)
  19. {
  20. TestLog = i; await Task.Delay(1);
  21. }
  22. Debug.Log("t1 thread id >>> " + System.Threading.Thread.CurrentThread.ManagedThreadId);
  23. }
  24. private async Task Modify2()
  25. {
  26. for (int i = Len; i < 2*Len; i++)
  27. {
  28. TestLog = i; await Task.Delay(20);
  29. }
  30. Debug.Log("t2 thread id >>> " + System.Threading.Thread.CurrentThread.ManagedThreadId);
  31. }
  32. private void Update()
  33. {
  34. if (TestLog >= 2 * Len)
  35. {
  36. Debug.LogError(TestLog);
  37. } else if (TestLog >= Len) {
  38. Debug.LogWarning(TestLog);
  39. }
  40. else
  41. {
  42. Debug.Log(TestLog);
  43. }
  44. }
  45. }

结果:MainThread -->t1/t2 

执行流程如下图,t1 遇到了await 则将控制权交还回去,立即执行t2 然后也遇到了await 将控制权交给了主线程中,这个时候t1 和 t2 还在执行中,同时在修改一个变量TestLog,具体每一帧执行了多少次t1, t2 是无法确定的,同时无法确定t1 和 t2 执行完毕后什么时候回到主线程中,t1 和 t2 不是在两个独立的线层中执行的,依然是
在主线程之中 

测试场景2: 使用new task 进行创建任务进行执行,通过Task 的 WaitAny 进行控制线程的执行流程,代码如下

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Threading;
  4. using System.Threading.Tasks;
  5. using UnityEngine;
  6. using UnityFx.Async;
  7. public class TestAsync : MonoBehaviour
  8. {
  9. private int Len = 100;
  10. private int TestLog;
  11. private void Start()
  12. {
  13. Task t11 = CreateTask("t11", 1); //创建会出现新的线程
  14. Task t12 = CreateTask("t12", 10); //创建会出现新的线程
  15. Task.WaitAny(t11, t12);
  16. Debug.LogError("Main Thread >>> " + System.Threading.Thread.CurrentThread.ManagedThreadId);
  17. }
  18. private Task CreateTask(string tag, int sleepTime) {
  19. Task t = new Task(() => {
  20. for (int i = 0; i < Len; i++)
  21. {
  22. TestLog = i; Thread.Sleep(sleepTime);
  23. }
  24. Debug.LogError(tag + "thread id >>> " + System.Threading.Thread.CurrentThread.ManagedThreadId);
  25. });
  26. t.Start();
  27. return t;
  28. }
  29. }

执行结果  t11 thread -- main thread -- t12 thread

t11 在执行完毕后,由于给线程管理器下达的命令是任何一个执行完毕就把执行权交回来,所以立即执行了Main Thread >>> 1, 最后执行了t12 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/95575
推荐阅读
相关标签
  

闽ICP备14008679号