为什么不能在静态类中重载运算符?

发布于 2024-08-21 23:09:50 字数 135 浏览 6 评论 0原文

我有一个 System.Net.IPAddress 的扩展类,我想重载二元运算符 >、<、== 但编译器告诉我不能重载内部的这些运算符一个静态类,我的其他扩展方法必须有它。这有什么特别的原因吗?

谢谢。

I have an extension class for System.Net.IPAddress and I was wanting to overload the binary operators >, <, == but the compiler is telling me that I can't overload those operators inside a static class, which I must have for my other extension methods. Is there a particular reason for this?

Thanks.

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

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

发布评论

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

评论(1

虐人心 2024-08-28 23:09:50

运算符必须与声明它们的类型的实例相关。由于不能拥有静态类的实例,因此定义运算符是没有意义的。

.NET 中没有“扩展运算符”。

出于您的目的,请考虑实现 IComparer(涵盖 <>)和/或 IEqualityComparer (涵盖 ==,或者您可能只使用返回 0 的比较;这取决于您是否考虑“排序相等”和“等于”相同)。

Operators must relate to instances of the type in which they are declared. Since you can't have instances of a static class, it makes no sense to define operators.

There are no "extension operators" in .NET.

For your purposes, consider implementing an IComparer<T> (covers < and >) and / or IEqualityComparer<T> (covers ==, or you might just use compare returning 0; it depends whether you consider "sorts equal" and "equal" as the same).

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