扩展方法和 C# 中的方法之间的区别

发布于 2024-10-04 16:29:29 字数 53 浏览 2 评论 0原文

C# 中的扩展方法方法 有什么区别?

What is the difference between Extension Methods and Methods in C#?

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

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

发布评论

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

评论(3

回心转意 2024-10-11 16:29:29

我认为您真正要寻找的是 静态和实例方法

归根结底,扩展方法是一些很好的编译器魔法和语法糖,它们允许您调用静态方法,就好像它是在特定类实例上定义的方法一样。但是,它不是实例方法,因为该特定类的实例必须传递到函数中。

I think what you are really looking for is the difference between Static and Instance Methods

At the end of the day Extension methods are some nice compiler magic and syntactic sugar that allow you to invoke a Static method as though it were a method defined on that particular class instance. However, it is NOT an instance method, as the instance of that particular class must be passed into the function.

So尛奶瓶 2024-10-11 16:29:29

ExtensionMethods :让您可以为类定义一组方法,而无需子类化,这是相对于继承的另一个好处。

方法:它们用于实现类的定义操作。

查看扩展方法示例

ExtensionMethods : Let you define set of methods to a class without subclassing another benefit over inheritance.

Methods : They are used for implementation of operation defind for the the class.

See example of Extension Methods

有木有妳兜一样 2024-10-11 16:29:29

扩展方法的一个非常好的特性是它们可以在 null 对象上调用,请参阅:

myclass x = null;
x.extension_method(); // this will work
x.method(); // this won't

遗憾的是,例如 string 的大多数方法都不是扩展方法,毕竟

x.ToLower();

应该返回 null if x 为空。我的意思是,这会有用。

当我需要这种空透明度时,我更喜欢编写扩展方法。

One really nice feature of extension methods is that they can be called on null objects, see this:

myclass x = null;
x.extension_method(); // this will work
x.method(); // this won't

It is a pity, that for example most methods of string are not extension methods, after all

x.ToLower();

should return null if x is null. I mean, it would be useful.

When I need such null-transparency I prefer writing extension methods.

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