当前位置:   article > 正文

Unity 多线程编程笔记 _Task详解_unity 主线程 id

unity 主线程 id

Task技术进行了大量的封装,在ThreadPool的基础上进行开发,如果使用.net4.0以上的版本开发,建议使用这门技术。

  1. Task支持多种创建模式
void Start()
    {
        Debug.Log("主线程ID"+Thread.CurrentThread.ManagedThreadId);

        //new关键字
        Task t1 = new Task(() =>
        {
            Debug.Log("使用New关键字创建的线程ID:" + Thread.CurrentThread.ManagedThreadId);
        });

        //静态方法
        Task.Run(() => {
            Debug.Log("使用静态方法创建的线程ID:" + Thread.CurrentThread.ManagedThreadId);
        });

        //工厂  
        //使用线程池
        Task.Factory.StartNew(() =>{
            Debug.Log("使用工厂创建的线程ID:" + Thread.CurrentThread.ManagedThreadId);
        });
        //单独创建线程
        Task.Factory.StartNew(() => {
            Debug.Log("使用工厂创建的线程ID:" + Thread.CurrentThread.ManagedThreadId);
        }, TaskCreationOptions.LongRunning);
    }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

在这里插入图片描述

  1. Task支持完成任务后可以添加回调
    void Start()
    {
        Task t1 = new Task(() =>
          {
              for (int i = 0; i < 3; i++)
              {
                  Debug.Log(i);
              }
          });
        t1.Start();
        t1.ContinueWith((t2) =>
        {
            Debug.Log("t1执行完毕");
        });

    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

在这里插入图片描述
3. Task 支持带返回值

    void Start()
    {
        Task<int> t1 = new Task<int>(WithResult);
        t1.Start();
        t1.Wait(); //等待任务完成
        Debug.Log(t1.Result);

    }
    public  int WithResult()
    {
        return 16;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

在这里插入图片描述
4.支持任务嵌套

 void Start()
    {
        //父任务中开启多个子任务,所有子任务执行完毕后父任务结束执行
        Task<string> ParentTask = new Task<string>(() =>
        {
            Debug.Log("Woring");
            Task<string> son01 = new Task<string>(() =>
             {
                 return "子任务01";
             }, TaskCreationOptions.AttachedToParent);
            son01.Start();
            Task<string> son02 = new Task<string>(() =>
            {
                return "子任务02";
            },TaskCreationOptions.AttachedToParent);
            son02.Start();

            return son01.Result +"*****"+ son02.Result;
        });
        
        ParentTask.Start();
        ParentTask.Wait();
        Debug.Log(ParentTask.Result);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

在这里插入图片描述
5. 支持取消

using UnityEngine;
using System.Threading.Tasks;
using System.Threading;
using System;

public class TestTask : MonoBehaviour
{
    void Start()
    {

        var cts = new CancellationTokenSource();
        var longTask = new Task<int>(() => TaskMethod("Task 1", 10, cts.Token), cts.Token);
        Debug.Log(longTask.Status);
        cts.Cancel();
        Debug.Log(longTask.Status);
        Debug.Log("First task has been cancelled before execution");


        cts = new CancellationTokenSource();
        longTask = new Task<int>(() => TaskMethod("Task 2", 10, cts.Token), cts.Token);
        longTask.Start();
        for (int i = 0; i < 5; i++)
        {
            Thread.Sleep(TimeSpan.FromSeconds(0.5));
            Debug.Log(longTask.Status);
        }
        cts.Cancel();
        for (int i = 0; i < 5; i++)
        {
            Thread.Sleep(TimeSpan.FromSeconds(0.5));
            Debug.Log(longTask.Status);
        }
        Debug.LogFormat("A task has been completed with result {0}.", longTask.Result);
     


    }
    private static int TaskMethod(string name, int seconds, CancellationToken token)
    {
        Debug.LogFormat("Task {0} is running on a thread id {1},Is thread pool thread: {2}",
                           name, Thread.CurrentThread.ManagedThreadId,
                           Thread.CurrentThread.IsThreadPoolThread);
        for (int i = 0; i < seconds; i++)
        {
            Thread.Sleep(TimeSpan.FromSeconds(1));
            if (token.IsCancellationRequested)
            {
                return -1;
            }
        }
        return 42 * seconds;
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

在这里插入图片描述

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

闽ICP备14008679号