MS 对 STL 的扩展

发布于 2024-07-17 00:59:59 字数 318 浏览 2 评论 0原文

如果这是一个“Google 是你的朋友”问题,我提前道歉。 我已经搜索过,但也许我使用了错误的搜索术语。

谁能给我指出 MS 随 Visual Studio 2003 提供的 STL 扩展的介绍性文档吗? 我相信这些库是从 Dinkumware 获得许可的,我已经看过他们的文档,但他们没有帮助解决这个问题。

我试图确保我们在使用这些扩展容器时没有犯一些愚蠢而明显的错误。 我自己没有处理过这个问题——我正在帮助另一位开发人员——但我相信这个问题与创建桶进入 hash_set 容器内某种无限循环的算法有关。 正如我所说,我只是想确保我们已经消除了明显且愚蠢的错误。

If this is a "Google Is Your Friend" question, I apologize in advance. I've searched but perhaps I've been using the wrong terms for searching.

Can anyone point me to any sort of introductory document on the STL extensions which MS provided with Visual Studio 2003? I believe the libraries were licensed from Dinkumware and I've seen their docs but they're not helping with this issue.

I'm trying to insure that we've not made some dumb and obvious mistake with our use of these extension containers. I've not worked on this issue myself--I'm helping another developer--but I believe the issue is something to do with the algorithm to create buckets getting into some sort of infinite loop within the hash_set container. As I say I just want to make sure we've eliminated obvious and dumb mistakes.

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

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

发布评论

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

评论(2

辞旧 2024-07-24 00:59:59

与往常一样,Microsoft 的 API 由 Microsoft 在 MSDN 上记录:

http://msdn.microsoft.com/en-us/library/1t4xas78(VS.80).aspx

As usual, Microsoft's API's are documented by Microsoft, on MSDN:

http://msdn.microsoft.com/en-us/library/1t4xas78(VS.80).aspx

趁年轻赶紧闹 2024-07-24 00:59:59

Microsoft 从 VS 2003 开始​​做了一件事,将非标准 C++ 扩展放入 stdext 命名空间中:

所以搜索 < code>stdext (在标题上或在 MSDN 上)将为您提供帮助。 请注意,虽然上面的链接仅讨论 (即使在 VS 2008 版本的页面中),但 stdext 命名空间用于其他东西,例如检查的迭代器和检查的算法。

One thing Microsoft has done starting with VS 2003 it to put non-standard C++ extensions in the stdext namespace:

So doing a search on stdext (either on the headers or on MSDN) will help you. Note that while the above link talks only about <hash_set> and <hash_map> (even in the VS 2008 version of the page), the stdext namespace is used for other things such as the checked iterators and checked algorithms.

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