是否有ArrayList? C++ 中的集合就像在Java中一样?

发布于 2024-12-10 04:50:57 字数 137 浏览 0 评论 0原文

我在我的 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 技术交流群。

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

发布评论

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

评论(2

沉睡月亮 2024-12-17 04:50:57

您正在寻找这个吗?

vector<string> var;

http://en.wikipedia.org/wiki/Vector_%28C%2B %2B%29

它的使用方式几乎相同,但方法名称不同。

Are you looking for just this?

vector<string> var;

http://en.wikipedia.org/wiki/Vector_%28C%2B%2B%29

It's used pretty much the same way but with different method names.

看轻我的陪伴 2024-12-17 04:50:57

STL 提供了 std::vector

这是 std::vector 的文档

There's std::vector<std::string> provided by the STL.

Here's the documentation for std::vector

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