C++/CLI 中的 Lambda 表达式

发布于 2024-08-29 10:31:33 字数 34 浏览 4 评论 0原文

如何在 C++/CLI 中使用 lambda 表达式?

How to use lambda expressions in C++/CLI?

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

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

发布评论

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

评论(3

回忆凄美了谁 2024-09-05 10:31:33

在 C# 中,lambda 实际上只是用于创建委托的语法糖。 C++/CLI 支持委托,因此您仍然可以执行所有相同的操作在 C++/CLI 中,您可以在 C# 中执行此操作,但您只是无法使用漂亮的语法。

In C#, lambdas are really just syntactic sugar for creating delegates. C++/CLI supports delegates, so you can still do all of the same stuff in C++/CLI that you can do in C#, you just don't get to use the nifty syntax.

听风吹 2024-09-05 10:31:33

我从 VC 博客上的 Microsoft 员工询问有关 C++ 0x lambda 和托管代码互操作性的问题:

您只能传递带有
托管类型作为 a 的参数
lambda - 你无法捕获变量
具有托管类型。
我们没有计划“合并”lambda 和委托。

I've found this response from a Microsoft employee on the vc blog to a question regarding C++ 0x lambda and managed code interoperability:

You can only pass a variable with a
managed type as an argument to a
lambda - you can't capture a variable
that has a managed type.
We have no plans to "merge" lambdas and delegates.

七堇年 2024-09-05 10:31:33

根据 Visual C++ 2010 中的新增功能只能在VS2010中使用lambda表达式。

According to What's New in Visual C++ 2010 you can use lambda expressions only in VS2010.

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