CoderNoteBook icon indicating copy to clipboard operation
CoderNoteBook copied to clipboard

程序员的自我修养 , 整理一些计算机类的基本知识

Results 1 CoderNoteBook issues
Sort by recently updated
recently updated
newest added

1、placement new: int tmp = 1; int* ptr = new (&tmp)int(2); 2、 struct test_t{ void* operator new(size_t) return nullptr; }; test_t* test = new test_t;