扩展方法和 C# 中的方法之间的区别
C# 中的扩展方法
和方法
有什么区别?
What is the difference between Extension Methods
and Methods
in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
C# 中的扩展方法
和方法
有什么区别?
What is the difference between Extension Methods
and Methods
in C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我认为您真正要寻找的是 静态和实例方法
归根结底,扩展方法是一些很好的编译器魔法和语法糖,它们允许您调用静态方法,就好像它是在特定类实例上定义的方法一样。但是,它不是实例方法,因为该特定类的实例必须传递到函数中。
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.
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
扩展方法的一个非常好的特性是它们可以在 null 对象上调用,请参阅:
遗憾的是,例如 string 的大多数方法都不是扩展方法,毕竟
应该返回 null if x 为空。我的意思是,这会有用。
当我需要这种空透明度时,我更喜欢编写扩展方法。
One really nice feature of extension methods is that they can be called on null objects, see this:
It is a pity, that for example most methods of string are not extension methods, after all
should return null if x is null. I mean, it would be useful.
When I need such null-transparency I prefer writing extension methods.