如何构建 system::drawing::rectangle 的向量
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
列表
班级。You can use the
List<T>
class.您可以使用数组或列表或其他 .Net 集合。
示例:
注意 - 如果您使用 VS2010,您可以将其简化为:
You can use an Array or List or other .Net collection.
Example:
Note - If you are using VS2010 you can simplify this to: