C++片段库

发布于 2024-12-12 02:18:03 字数 182 浏览 0 评论 0原文

你知道 C++ 做的那些烦人的事情不是很直观,比如在自定义分隔符上分割字符串或创建动态扩展数组/向量...是否有任何片段库(我一直在到处看到 boost,如果有的话请告诉我)这就是解决方案),我应该知道吗?或者也许是一个拥有许多这样的网站,以便我可以刷新我的 C++ 知识......为此目的的任何内容都是可以接受的。

感谢SO社区!

You know those annoying things that C++ doesn't do very intuitively, like splitting strings on custom delimiters or creating dynamically expanding arrays/vectors... is there any snippet library (I keep seeing boost all over the place, please let me know if that is the solution), that I should be aware of? Or maybe a website that has a number of them so that I can refresh my knowledge of C++... anything to that end is acceptable.

Thanks SOCommunity!

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

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

发布评论

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

评论(2

羁绊已千年 2024-12-19 02:18:03

您给出的两个特定示例都包含在标准库中 - 用于分割字符串的 stringstreamgetline() 以及用于动态数组的 vector

那应该是第一个看的地方;当标准库不能满足您的需求时,Boost 是一个很好的资源。

The two particular examples you give are both covered by the standard library - stringstream and getline() to split strings, and vector for a dynamic array.

That should be the first place to look; Boost is a good resource when the standard library doesn't meet your needs.

任谁 2024-12-19 02:18:03

对于动态扩展向量,您应该使用 STL。

For dynamically expanding vectors, you should be using the STL.

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