如何在 c++ 中使用 foreach 托管代码中的 cli

发布于 2024-07-19 21:33:13 字数 47 浏览 7 评论 0原文

您好,如何使用 vs2003 在托管代码 C++ 中使用 foreach 循环。

Hi how to use foreach loop in managed code c++ using vs2003.

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

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

发布评论

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

评论(5

落日海湾 2024-07-26 21:33:15

我不认为VC++有foreach

I don't think that VC++ has foreach

七月上 2024-07-26 21:33:14

就像是:

String ^ MyString = gcnew String("abcd");

for each ( Char c in MyString )

    Console::Write(c);

Something like:

String ^ MyString = gcnew String("abcd");

for each ( Char c in MyString )

    Console::Write(c);
感受沵的脚步 2024-07-26 21:33:14

从 VS2022 开始,for every 显然不再有效。 相反,你可以这样做:

IEnumerator^ enumerator = myList->GetEnumerator();
while (enumerator->MoveNext())
{
    // Do stuff
}

As of VS2022 for each apparently no longer works. Instead you can do something like this:

IEnumerator^ enumerator = myList->GetEnumerator();
while (enumerator->MoveNext())
{
    // Do stuff
}
预谋 2024-07-26 21:33:13

我从未使用过它,但是这篇 MSDN 文章 表示一般语法如下:

for each(Type t in IEnumerable)
{

}

I've never used it, but this MSDN article indicates the general syntax is just:

for each(Type t in IEnumerable)
{

}
夜灵血窟げ 2024-07-26 21:33:13

马修大部分是正确的,但这里有一个工作代码块;

///////
array<Type^>^ iterate_me = gcnew array<Type^>(2);
iterate_me[0] = Type::GetType("Type");
iterate_me[1] = Type::GetType("System.Int32");
///////

for each(Type^ t in iterate_me)
    Console::WriteLine(t);

更改是 Type 是一个引用类,因此您使用“Type^”而不是“Type”,并且您需要一个实际的对象引用(iterate_me)...

Matthew is mostly correct, but here's a working block of code;

///////
array<Type^>^ iterate_me = gcnew array<Type^>(2);
iterate_me[0] = Type::GetType("Type");
iterate_me[1] = Type::GetType("System.Int32");
///////

for each(Type^ t in iterate_me)
    Console::WriteLine(t);

The changes were Type is a reference class, so you use "Type^" not "Type" and you need an actual object reference (iterate_me)...

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