是否有ArrayList? C++ 中的集合就像在Java中一样?
我在我的 java 类中使用本机函数。
我已经编写了用于 XML 解析的 C++ 函数。
我的问题是,解析 XML 后,我必须将节点名称存储到字符串数组中,但我不想修复它的大小。
像java、C++有什么集合吗?
I am using native function in my java class.
I have written C++ function for XML parsing.
My problem is that after parsing XML, i have to store node names into string array, but i dont want to fix its size.
Like java, C++ have any collection ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找这个吗?
http://en.wikipedia.org/wiki/Vector_%28C%2B %2B%29
它的使用方式几乎相同,但方法名称不同。
Are you looking for just this?
http://en.wikipedia.org/wiki/Vector_%28C%2B%2B%29
It's used pretty much the same way but with different method names.
STL 提供了
std::vector
。这是
std::vector
的文档There's
std::vector<std::string>
provided by the STL.Here's the documentation for
std::vector