在不知道对象实例的情况下传递 Func

发布于 2024-10-27 09:14:24 字数 531 浏览 0 评论 0原文

我有一个 Foo 类,其中有许多返回 DataSet 的方法。我希望能够传递 Func; process 到一个方法中,该方法可以在调用方法不知道的 Foo 实例上调用所请求的方法。像这样的东西:

DataSet CommonMethod( Func<DataSet> process )
{
    Foo foo = GetFooFromSomewhere( );
    return foo.process( );  // <-- obviously, not this way!
}

用类似的东西调用

DataSet ds1 = CommonMethod( GetDataSetForX );
DataSet ds2 = CommonMethod( GetDataSetForY );

,其中 GetDataSetForX/Y 是 Foo 的方法。

[注意:我不拥有 Foo - 我无法对其进行更改。]

I have a Class Foo with a number of methods that return DataSet. I want to be able to pass a Func<DataSet> process into a method that can call the requested method on an instance of Foo that the calling method doesn't know. Something like this:

DataSet CommonMethod( Func<DataSet> process )
{
    Foo foo = GetFooFromSomewhere( );
    return foo.process( );  // <-- obviously, not this way!
}

called with something like

DataSet ds1 = CommonMethod( GetDataSetForX );
DataSet ds2 = CommonMethod( GetDataSetForY );

where GetDataSetForX/Y are methods of Foo.

[NOTE: I don't own Foo - I can't make changes to it.]

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

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

发布评论

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

评论(1

烟火散人牵绊 2024-11-03 09:14:24

这样做:

DataSet CommonMethod( Func<Foo, DataSet> process )
{
    Foo foo = GetFooFromSomewhere( );
    return process(foo);
}

// call it like this:
DataSet ds1 = CommonMethod(f => f.GetDataSetForX());
DataSet ds2 = CommonMethod(f => f.GetDataSetForY());

但老实说,在你的简单例子中,我没有看到好处。为什么不采用“老式方式”呢?

DataSet ds1 = GetFooFromSomewhere().GetDataSetForX();
DataSet ds2 = GetFooFromSomewhere().GetDataSetForY();

Do it like this:

DataSet CommonMethod( Func<Foo, DataSet> process )
{
    Foo foo = GetFooFromSomewhere( );
    return process(foo);
}

// call it like this:
DataSet ds1 = CommonMethod(f => f.GetDataSetForX());
DataSet ds2 = CommonMethod(f => f.GetDataSetForY());

But honestly, in your simple example, I don't see the benefit. Why not just do it the "old fashioned way"?

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