编译器对 STL 容器中的有状态分配器的支持
新的 C++11 标准需要 STL 实现来支持容器中的有状态分配器。现在主要的 STL 实现(Visual Studio 2008、2010、libstdc++)是否符合此要求?我在 MSDN 或 libstdc++ 文档中没有找到任何关于此的信息。
The new C++11 standard requires STL implementations to support stateful allocators in containers. Do main STL implementations (Visual Studio 2008, 2010, libstdc++) comply to this requirement now? I found nothing about this in MSDN or in libstdc++ documentation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来 STL 容器中的有状态分配器功能已经得到了广泛支持。在大多数情况下,分配器的状态性不会造成问题。目前尚未得到广泛支持的是新标准处理问题情况的方式(交换容器(是否也交换分配器)、列表拼接)。
此主题说:
这个步骤(libstdc++,2004)说(如果我理解正确的话):
此博客条目(libstdc++,2009)说:
<一href="http://www.google.com/url?sa=t&source=web&cd=13&ved=0CCYQFjACOAo&url=http://llvm.org/devmtg/2010-11/Hinnant-libcxx .pdf&rct=j& ;q=libstdc%2b%2b%20stateful%20allocator&ei=SHs2TrTqDoXoOfmq6PAL&usg=AFQjCNEZjxZLqUP2tr_WyfH9HwoYEeP16w&sig2=u3V4tyggTYmtF3qk_IaUjg&cad=rja" rel="nofollow noreferrer">本文档介绍了新的libc++ 库:
EASTL 支持有状态分配器。
此帖子关于此功能的可移植性存在一个有趣的争论。
因此,大多数 STL 实现都支持有状态分配器,这意味着它们不会在底层创建分配器类型的其他实例,而是存储客户端提供的分配器实例,并且所有分配/解除分配都是通过该实例完成的。然而,它们处理
swap
ping 和list::splice
的方式没有文档记录,不可移植。更新:VS2008 的 STL 要求分配器具有模板化的复制构造函数,在我看来,这使得自定义分配器最重要的用途变得不可能:简单的隔离存储。
对于对 STL 中有状态分配器的当前状态不满意的人,我建议考虑 Boost.Intrusive 和 Boost.Container。
Looks like the feature of stateful allocators in STL containers is widely supported already. In most cases statefullness of the allocator does not cause trouble. What is not widely supported yet is the new standard's way of handling the problematic situations (swap of a container(whether to swap the allocator too), splice of lists).
This thread says:
This tread (libstdc++, 2004) says (if i understood correctly):
This blog entry (libstdc++, 2009) says:
This document says about the new libc++ library:
EASTL supports statefull allocators.
This thread contains an interesting dispute about how portable this feature is.
So most STL implementations support statefull allocators, which means that they do not create additional instances of the allocator type under the hood, but store the client-supplied allocator instance and all allocations/deallocations are done via that. However the way that they handle
swap
ping andlist::splice
is undocumented, non-portable.UPDATE: VS2008's STL requires the allocators to have the templated copy constructor, which IMO makes the most important use of custom allocators impossible: simple segregated storage.
For whoever is not satisfied with the current state of stateful allocators in STL, I recommend to consider
Boost.Intrusive
andBoost.Container
.g++ 还不支持作用域分配器。
VS2010 支持某些非标准分配器 但显然不是标准的
g++ does not support scoped allocators yet.
VS2010 supportes certain non-standard allocators but not apparently the standard ones