C# Task.Delay()和Thread.Sleep()有什么区别?

     很多时候我们需要做一段延时处理,就直接Thread.Sleep(n)处理了,但实际上延时也可以用Task.Delay(n),那二者之间有没有区别呢?

我们先来看一个案例:

using System;
using System.Threading;
using System.Threading.Tasks;namespace ConsoleApp22
{class Program{static void Main(string[] args){//Good writingTask.Run(async () =>{int delayTimeCount = 0;while (true){Console.WriteLine($"Delay第{++delayTimeCount}秒");await Task.Delay(1000);}});//Bad writingTask.Run(() =>{int sleepTimeCount = 0;while (true){Console.WriteLine($"Thread{++sleepTimeCount}秒");Thread.Sleep(1000);}});Console.ReadKey();}}
}

运行结果:

c19562019fea005137bdc34196e948b8.png

区别:

①.Thread.Sleep()是同步延迟,既然是同步的,自然会阻塞当前线程;Task.Delay()是异步延迟,则不会阻塞线程;
②.Thread.Sleep()不能中途取消,Task.Delay()可以,delay有四个重载方法,需要取消的话,可以调用Delay(int millisecondsDelay, CancellationToken cancellationToken)这个方法;

//// 摘要://     Creates a task that completes after a specified number of milliseconds.//// 参数://   millisecondsDelay://     The number of milliseconds to wait before completing the returned task, or -1//     to wait indefinitely.//// 返回结果://     A task that represents the time delay.//// 异常://   T:System.ArgumentOutOfRangeException://     The millisecondsDelay argument is less than -1.public static Task Delay(int millisecondsDelay);//// 摘要://     Creates a cancellable task that completes after a specified number of milliseconds.//// 参数://   millisecondsDelay://     The number of milliseconds to wait before completing the returned task, or -1//     to wait indefinitely.////   cancellationToken://     A cancellation token to observe while waiting for the task to complete.//// 返回结果://     A task that represents the time delay.//// 异常://   T:System.ArgumentOutOfRangeException://     The millisecondsDelay argument is less than -1.////   T:System.Threading.Tasks.TaskCanceledException://     The task has been canceled.////   T:System.ObjectDisposedException://     The provided cancellationToken has already been disposed.public static Task Delay(int millisecondsDelay, CancellationToken cancellationToken);//// 摘要://     Creates a task that completes after a specified time interval.//// 参数://   delay://     The time span to wait before completing the returned task, or TimeSpan.FromMilliseconds(-1)//     to wait indefinitely.//// 返回结果://     A task that represents the time delay.//// 异常://   T:System.ArgumentOutOfRangeException://     delay represents a negative time interval other than TimeSpan.FromMilliseconds(-1).//     -or- The delay argument's System.TimeSpan.TotalMilliseconds property is greater//     than System.Int32.MaxValue.public static Task Delay(TimeSpan delay);//// 摘要://     Creates a cancellable task that completes after a specified time interval.//// 参数://   delay://     The time span to wait before completing the returned task, or TimeSpan.FromMilliseconds(-1)//     to wait indefinitely.////   cancellationToken://     A cancellation token to observe while waiting for the task to complete.//// 返回结果://     A task that represents the time delay.//// 异常://   T:System.ArgumentOutOfRangeException://     delay represents a negative time interval other than TimeSpan.FromMilliseconds(-1).//     -or- The delay argument's System.TimeSpan.TotalMilliseconds property is greater//     than System.Int32.MaxValue.////   T:System.Threading.Tasks.TaskCanceledException://     The task has been canceled.////   T:System.ObjectDisposedException://     The provided cancellationToken has already been disposed.public static Task Delay(TimeSpan delay, CancellationToken cancellationToken);

③在异步代码中通常使用await关键字调用Task.Delay(),而不是Thread.Sleep();

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/283053.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

.NET MAUI实战 MessagingCenter

1.概要在.NET MAUI提供了消息机制,该机制为订阅/发布模式。发布-订阅模式是一种消息传递模式,在此模式下,发布者可在无需知道任何接收方(称为订阅方)的情况下发送消息。同样,订阅方可在不了解任何发布方的情…

洛谷——P1033 自由落体

https://www.luogu.org/problem/show?pid1033#sub 题目描述 在高为 H 的天花板上有 n 个小球,体积不计,位置分别为 0,1,2,….n-1。在地面上有一个小车(长为 L,高为 K,距…

java 接口防刷_java轻量级接口限流/防刷插件

简介call-limit提供接口限流、防刷的功能,插件基于spring开发,在应用应用的任何一个逻辑层皆可使用(web、service、dao),插件支持单机应用下的限流和分布式应用的限流(分布式应用限流需要依赖redis),在简单业务场景下插件可为大家…

【leetcode】521. Longest Uncommon Subsequence I

题目如下: 解题思路:本题有点意思。首先如果输入的两个字符串都为空,那么结果是-1;如果两个字符串长度不一样,那么结果是较长的字符串的长度,因为较长的字符串肯定是自身的子序列,但一定不是较短…

【问题】为什么 System.Timers.Timer 更改间隔时间后的第一次触发时间是设定时间的三倍?...

【问题】为什么 System.Timers.Timer 更改间隔时间后的第一次触发时间是设定时间的三倍?独立观察员 2022 年 9 月 4 日在编写 “Wifi 固定器 [1]” 程序时,按如下方式使用了定时器:// 声明; private Timer _Timer new Timer() { …

JS魔法堂:判断节点位置关系

一、前言                           在polyfill querySelectorAll 和写弹出窗时都需要判断两个节点间的位置关系,通过jQuery我们可以轻松搞定,但原生JS呢?下面我将整理各种判断方法,以供日后查阅。 二…

ChartCtrl源码剖析之——CChartAxis类

CChartAxis类用来绘制波形控件的坐标轴,这个源码相对较复杂,当初阅读的时候耗费了不少精力来理解源码中的一些实现细节。 CChartAxis类的头文件。 #if !defined(AFX_CHARTAXIS_H__063D695C_43CF_4A46_8AA0_C7E00268E0D3__INCLUDED_) #define AFX_CHARTA…

基于.net开发的自助餐饮系统

本文系 EMQ&Intel 联合举办的首届“中国物联网数据基础设施最佳案例评选大赛“个人开发者赛道一等奖作品。项目简介智能餐饮自助结算系统是一个由称重系统、显示屏、自助扫码盒和 Intel CPU 组成的智能自助结算终端,将装有菜品的托盘放到秤盘上结算,…

java打包维护_java打包详解

from yahh2008的blog: http://www.matrix.org.cn/blog/yahh2008/兄弟,对java着迷吗,或者是为了自己的生计,不论怎样都欢迎你进入精彩java世界,welcome!可能你刚刚对每个人说:Hello World!也或者…

Linux高级文本处理之sed(三)

sed高级命令sed允许将多行内容读取到模式空间,这样你就可以匹配跨越多行的内容。本篇笔记主要介绍这些命令,它们能够创建多行模式空间并且处理之。其中,N/D/P这三个多行命令分别对应于小写的n/d/p命令,后者我们在上一篇已经介绍。…

如何在 C# 程序中注入恶意 DLL ?

一:背景 前段时间在训练营上课的时候就有朋友提到一个问题,为什么 Windbg 附加到 C# 程序后,程序就处于中断状态了?它到底是如何实现的?其实简而言之就是线程的远程注入,这一篇就展开说一下。二&#xff1a…

练习题|网络编程-socket开发

原文:https://www.cnblogs.com/shengyang17/p/8822745.html 1、什么是C/S架构? C指的是client(客户端软件),S指的是Server(服务端软件),C/S架构的软件,实现服务端软件与客…

ABP vNext微服务架构详细教程(补充篇)——单层模板(上)

简介在之前的《ABP vNext微服务架构详细教程》系列中,我们已经构建了完整的微服务架构实例,但是在开发过程中,我们会发现每个基础服务都包含10个类库,这是给予DDD四层架构下ABP的实现方案,但是实际使用中我们会发现&am…

mybatis源码学习(三):MappedStatement的解析过程

我们之前介绍过MappedStatement表示的是XML中的一个SQL。类当中的很多字段都是SQL中对应的属性。我们先来了解一下这个类的属性: public final class MappedStatement {private String resource;private Configuration configuration;//sql的IDprivate String id;//…

C# 二十年语法变迁之 C# 8参考

C# 二十年语法变迁之 C# 8参考自从 C# 于 2000 年推出以来,该语言的规模已经大大增加,我不确定任何人是否有可能在任何时候都对每一种语言特性都有深入的了解。因此,我想写一系列快速参考文章,总结自 C# 2.0 以来所有主要的新语言…

windows 提权 cve-2018-8897

windows 提权 cve-2018-8897影响范围:基本上是全版本具体影响范围看详情:https://portal.msrc.microsoft.co … isory/CVE-2018-8897http://www.o2oxy.cn/wp-content/uploads/2018/06/cve-2018-8897.rar转载于:https://blog.51cto.com/9861015/2126608

java servlet练习测试

步骤: 0、首先创建web project,工程名:test_servlet 1、编写Servlet,TestServlet.java文件内容: package com.ouyang.servlet;import java.io.IOException; import java.sql.Connection; import java.sql.DriverManage…

《ASP.NET Core 6框架揭秘》实例演示[19]:数据加解密与哈希

数据保护(Data Protection)框架旨在解决数据在传输与持久化存储过程中的一致性(Integrity)和机密性(confidentiality)问题,前者用于检验接收到的数据是否经过篡改,后者通过对原始的数…

如何在ABAP Netweaver和CloudFoundry里记录并查看日志

Netweaver 要记录日志需要有一个checkpoint group&#xff0c;可以自行创建也可以使用标准的。这里我重用标准的group&#xff1a;DEMO_CHECKPOINT_GROUP。 tcode SAAB&#xff0c;点Display <->Activate进入编辑模式&#xff0c;将Logpoints设置为"Log"&#…

如何成为有效学习的高手(许岑)——思维导图

总结自许岑精品课《如何成为有效学习的高手》&#xff0c;图片看不清的可以看下面。 最后有彩蛋&#xff01;最后有彩蛋&#xff01;最后有彩蛋&#xff01; 定义 高效学习的定义&#xff1a;找到最适合自己的学习手法&#xff0c;在相对短的时间内集中注意力&#xff0c;以解决…