c#:动作无与伦比?

发布于 2024-10-27 00:44:06 字数 106 浏览 1 评论 0原文

我正在尝试比较两个操作。与 == 的比较总是返回 false,就像 Equals 方法一样,即使它是同一个实例。

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

干杯 交流电

I'm trying to compare two Actions. The comparison with == always returns false as does the Equals-method even though it's the same instance.

My question is: Is it really not possible or am I doing it wrong?

Cheers
AC

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别把无礼当个性 2024-11-03 00:44:07

你做错了。

如果我相信你,当你说“即使它是同一个实例”时,那么通过 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

换句话说,都是 ==, a.Equals(b)object.ReferenceEquals(a, b) 表示它是同一个实例。

另一方面,如果我复制代码:

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 实例,而不仅仅是一个,但它们仍然比较相等。

You are doing it wrong.

If I am to believe you, when you say "even though it's the same instance", then the following code executed through LINQPad tells me that you must be doing something wrong, or the "same instance" is incorrect:

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

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

The output is:

== 
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");

Then they all report false.

If I link them both to a named method, and not an anonymous one:

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()
{
}

Then the output is:

== 
True 

Equals 
True 

ReferenceEquals 
False

In other words, I now got two Action instances, not just one, but they still compare equal.

感悟人生的甜 2024-11-03 00:44:07

您可以比较 MethodTarget 属性。

You can compare Method and Target properties.

变身佩奇 2024-11-03 00:44:07

您可以比较 action.Methodaction.Target

You can compare action.Method and action.Target.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文