gpt4 book ai didi

c# - ThreadStart 和 Action 之间的区别

转载 作者:可可西里 更新时间:2023-11-01 09:01:17 27 4
gpt4 key购买 nike

有人知道

之间的区别吗
Dispatcher.BeginInvoke(DispatcherPriority.Background, new ThreadStart(() =>
{

Dispatcher.BeginInvoke(DispatcherPriority.Background, new Action(() =>
{

最佳答案

应该没有区别。 ThreadStartAction 定义为

public delegate void ThreadStart();

public delegate void Action();

即没有参数也没有返回值的委托(delegate)。所以它们在语义上是相同的。


但是,我会使用 Action 而不是 ThreadStart,因为 ThreadStartThread 构造函数密切相关,所以带有 ThreadStart 的代码可以暗示直接创建线程,因此有点误导。

关于c# - ThreadStart 和 Action 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12916732/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com