发布时间:2013-01-24 23:04:42
对照着cpp primer 5th 中所列的c++ 11特性按章节学习记录下。Chapter 2 Variables and Basic Types1. 新类型 long long,at least as large as long,这个怎么记得早就有了,vs2005好像就支持。2. List Initialization int i{3}; //用大括号(curly braces)的形式,使用范围比较受限,SBL这.........【阅读全文】
发布时间: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 (.........【阅读全文】