发布时间:2013-01-22 15:36:15
Item 51: Adhere to convention when writing new and deletescott这里给了一个new的大致流程伪代码,非常有用:void * operator new(std::size_t size) throw(std::bad_alloc){ // your operator new might take additional params using namespace std; if (.........【阅读全文】
发布时间:2013-01-22 12:16:11
虽然说默认版本的new/delete是效率最高的,但有时需要定制自己的版本。1.头或尾加入魔术字,验证操作内存是否越界。2.手动控制字节对齐,提高效率等等。3.统计内存的使用等等。4.提高效率,指广义的new,即先申请好内存,统一管理,需要内存时向自己申请,pool模型就是这样吧。等等等等,总之就.........【阅读全文】
发布时间:2013-01-19 00:38:41
Item 49: Understand the behavior of the new-handler先参考:?http://en.cppreference.com/w/cpp/language/new ,回顾下new。PS:这网站看名字就知道不错。最常见的new,像 int *p = new int; 这种称为 new-expression,它的原型两种:::(optional) new (placement_params)(optional.........【阅读全文】