C# 4 中的动态方法可以用于每次调用时返回不同的数据类型吗?

发布于 2024-12-13 10:06:08 字数 166 浏览 0 评论 0原文

如果我在 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 技术交流群。

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

发布评论

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

评论(2

柒七 2024-12-20 10:06:08

动态方法可以在它选择的任何点自由地更改它的返回数据。例如,

class Example {
  private int m_count;
  public dynamic GetData() {
    switch(m_count++) {
      case 0: return 42;
      case 1: return "hello world";
      default: return new object();
    }
  }
}

动态类型方法与具有对象返回类型的方法几乎没有什么不同。它可以自由地返回与object兼容的任何值。唯一的问题是确保方法的调用者可以处理各种值。

A dynamic method is free to change it's return data at any point it chooses. For example

class Example {
  private int m_count;
  public dynamic GetData() {
    switch(m_count++) {
      case 0: return 42;
      case 1: return "hello world";
      default: return new object();
    }
  }
}

A dynamic typed method is little different than a method that has an object return type. It's free to return any values which are compatible with object. The only issue is ensuring the caller of the method can handle the various values.

怕倦 2024-12-20 10:06:08

任何对象都可以隐式转换为动态类型,因此您应该能够这样做。在大多数情况下,动态函数类似于 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.

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