如何构建 system::drawing::rectangle 的向量

发布于 2024-11-08 05:39:22 字数 95 浏览 0 评论 0原文

如何在 C++ 中构建 system::drawing::rectangle 的向量? 我尝试了 std 的 vecor 但收到一条错误消息,指出不支持混合类型。我能做些什么?

How do I build a vector of system::drawing::rectangle in c++?
I tried vecor of std but got an error message that mixed types are not supported. What can I do?

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

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

发布评论

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

评论(2

楠木可依 2024-11-15 05:39:22

您可以使用列表班级。

You can use the List<T> class.

你的他你的她 2024-11-15 05:39:22

您可以使用数组或列表或其他 .Net 集合。

示例:

List<System::Drawing::Rectangle>^ rectangles = gcnew List<System::Drawing::Rectangle>();

注意 - 如果您使用 VS2010,您可以将其简化为:

auto rectangles = gcnew List<System::Drawing::Rectangle>();

You can use an Array or List or other .Net collection.

Example:

List<System::Drawing::Rectangle>^ rectangles = gcnew List<System::Drawing::Rectangle>();

Note - If you are using VS2010 you can simplify this to:

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