如何在 c++ 中构建 system::d rawing::rectangle 的向量?我尝试了 vecor 的 std,但收到一条错误消息,不支持混合类型。 我能做什么?
您可以使用
List<T>
类。
可以使用 Array 或 List 或其他 .Net 集合。
例:
List<System::Drawing::Rectangle>^ rectangles = gcnew List<System::Drawing::Rectangle>();
注意 - 如果您使用的是VS2010,则可以将其简化为:
auto rectangles = gcnew List<System::Drawing::Rectangle>();