在不知道对象实例的情况下传递 Func
我有一个 Foo 类,其中有许多返回 DataSet 的方法。我希望能够传递 Func
到一个方法中,该方法可以在调用方法不知道的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样做:
但老实说,在你的简单例子中,我没有看到好处。为什么不采用“老式方式”呢?
Do it like this:
But honestly, in your simple example, I don't see the benefit. Why not just do it the "old fashioned way"?