将条件作为参数传递

发布于 2024-12-01 04:42:41 字数 233 浏览 2 评论 0原文

是否可以像操作操作一样将条件作为参数传递?

这是一个例子。

public void Test(Action action, Condition condition);

...

Test( () => Environment.Exit(0), () => variable == variable2 );

Is it possible to pass a condition as parameter as you do with actions?

Here's an example.

public void Test(Action action, Condition condition);

...

Test( () => Environment.Exit(0), () => variable == variable2 );

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

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

发布评论

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

评论(1

梦在夏天 2024-12-08 04:42:41

尝试将第二个参数作为 Func 类型传递。该代码应该像您在问题的第二部分中一样工作:

public void Text(Action action, Func<Boolean> condition) {
    if (condition()) action();
}

编辑:请注意,您在使用示例中要做的是创建一个 包含捕获的变量variable和variable2的闭包。在以这种方式使用闭包之前,您应该了解闭包的含义。

Try passing the second argument as type Func<Boolean>. The code should work as you have it in the second part of your question:

public void Text(Action action, Func<Boolean> condition) {
    if (condition()) action();
}

EDIT: Note that what you would be doing in your usage example is creating a Closure containing the captured variables variable and variable2. You should understand the implications of closures before using them in this way.

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