C# 泛型 - 返回派生类的对象?

发布于 2024-08-25 22:40:07 字数 391 浏览 6 评论 0原文

public class BaseClass{
  public static T Find<T>(object value){
     -- db.get<T>("params", value);
  }
}

public class Derived: BaseClass{
}

...
void someMethod(){
  Derived obj = Derived.Find<Derived>(1);
}

在上面的代码中,如何将 Derived obj = Derived.FindDerived(1); 更改为 Derived obj = Derived.Find(1);

public class BaseClass{
  public static T Find<T>(object value){
     -- db.get<T>("params", value);
  }
}

public class Derived: BaseClass{
}

...
void someMethod(){
  Derived obj = Derived.Find<Derived>(1);
}

In the above code how do I change Derived obj = Derived.FindDerived<Derived>(1); to Derived obj = Derived.Find(1);

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

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

发布评论

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

评论(3

以可爱出名 2024-09-01 22:40:07

如果您的方法签名是这样的

public static T Find<T>(T value)

那么您可以省略方法调用中的类型。但是,根据您给定的签名,如果您没有明确说明,编译器将无法推断出类型。

If your method signature were something like this

public static T Find<T>(T value)

Then you could omit the type in the method call. However, from your given signature, the compiler is unable to infer the type without you stating it explicitly.

妖妓 2024-09-01 22:40:07

在许多情况下,编译器可以识别类型参数,并且可以省略它们,但并非在所有情况下都是如此。我认为返回值只是不支持的情况之一,因为返回值不是方法签名的一部分。

这里是 Eric Lippert 关于类似问题的博客文章。

In many cases compiler can identify type parameters and they can be omitted but not in all cases. I think return value is just one of the not supported cases becase return value is not a part of the method signature.

Here is Eric Lippert's blog post on similar issue.

‘画卷フ 2024-09-01 22:40:07

您可以通过将 BaseClass 更改为泛型类来消除它:

public class BaseClass<T> {
    public static T Find(object value){
         -- db.get<T>("params", value);
    }
}

public class Derived: BaseClass<Derived> {

    void someMethod(){
      Derived obj = Derived.Find(1);
    }
}

You can eliminate it by changing BaseClass to a generic class:

public class BaseClass<T> {
    public static T Find(object value){
         -- db.get<T>("params", value);
    }
}

public class Derived: BaseClass<Derived> {

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