C# 4 中的动态方法可以用于每次调用时返回不同的数据类型吗?
如果我在 C# 4 中有一个动态方法。例如,它可以用于在 1 个调用中返回一个字符串,在另一个调用中返回一个布尔值,在另一个调用中返回一个 int 吗?
或者动态方法的返回类型是在第一次运行时调用后设置的?这意味着如果我第一次调用该方法时它返回一个布尔值,那么对该方法的所有后续调用也必须返回布尔值吗?
If I have a dynamic method in C# 4. Can it be used to return for example in 1 call - A string, in another call a Boolean, and in another call an int?
Or is the return type of the dynamic method set after the first runtime call? Meaning if the first time I call the method it returns a boolean, must all subsequent calls to that method also return boolean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
动态
方法可以在它选择的任何点自由地更改它的返回数据。例如,动态类型方法与具有对象返回类型的方法几乎没有什么不同。它可以自由地返回与
object
兼容的任何值。唯一的问题是确保方法的调用者可以处理各种值。A
dynamic
method is free to change it's return data at any point it chooses. For exampleA
dynamic
typed method is little different than a method that has anobject
return type. It's free to return any values which are compatible withobject
. The only issue is ensuring the caller of the method can handle the various values.任何对象都可以隐式转换为动态类型,因此您应该能够这样做。在大多数情况下,动态函数类似于
object
类型。Any object can be converted to dynamic type implicitly, so you should be able to to do so. Dynamic in most cases functions like type
object
.