gpt4 book ai didi

c#: Action 无与伦比?

转载 作者:太空狗 更新时间:2023-10-29 22:14:49 27 4
gpt4 key购买 nike

我正在尝试比较两个 Action。与 == 的比较总是返回 false,Equals 方法也是如此,即使它是同一个实例。

我的问题是:真的不可能还是我做错了?

干杯空调

最佳答案

你做错了。

如果我相信你,当你说“即使是同一个实例”时,下面的代码会通过 LINQPad 执行。告诉我你一定做错了什么,或者“同一实例”不正确:

void Main()
{
Action a = () => Debug.WriteLine("test");
Action b = a;

(a == b).Dump("==");
(a.Equals(b)).Dump("Equals");
object.ReferenceEquals(a, b).Dump("ReferenceEquals");
}

输出是:

== True Equals True ReferenceEquals True

In other words, both ==, a.Equals(b) and object.ReferenceEquals(a, b) says its the same instance.

On the other hand, if I duplicate the code:

Action a = () => Debug.WriteLine("test");
Action b = () => Debug.WriteLine("test");

然后都报假。

如果我将它们都链接到命名方法,而不是匿名方法:

void Main()
{
Action a = Test;
Action b = Test;

(a == b).Dump("==");
(a.Equals(b)).Dump("Equals");
object.ReferenceEquals(a, b).Dump("ReferenceEquals");
}

private static void Test()
{
}

那么输出是:

== True Equals True ReferenceEquals False

换句话说,我现在有两个 Action 实例,不仅仅是一个,但它们仍然比较相等。

关于c#: Action 无与伦比?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5470607/

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