码迷,mamicode.com
首页 > 其他好文 > 详细

Allocators与Criterion的相同点及区别

时间:2016-01-06 11:37:49      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

1、相同点:

Allocators having the same type were assumed to be equal so that memory allocated by one
allocator could be deallocated by another allocator of the same type.

It was not possible to change the memory resource at runtime.
Allocators had limitations in the ability to hold a state, such as bookkeeping information or
information about where to allocate next.

2、区别:

Allocators were not swapped when the containers were swapped.

Allocators were not handled consistently, because copy constructors copied allocators, whereas
the assignment operator did not. Thus, the copy constructor did not have the same effect as
calling the default constructor and the assignment operator afterward.

Allocators与Criterion的相同点及区别

标签:

原文地址:http://www.cnblogs.com/ptolemaeus/p/5104774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!