全局new和宏结合起来的一个小应用
Posted 机智的小小帅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了全局new和宏结合起来的一个小应用相关的知识,希望对你有一定的参考价值。
1 #include <iostream> 2 using namespace std; 3 4 void* operator new(size_t size, const char* file, int line) 5 { 6 cout << file << " : " << line << endl; 7 cout << "size : " << size << endl; 8 return ::new char[size]; 9 } 10 #define new new(__FILE__,__LINE__) 11 12 int main() 13 { 14 int* a = new int; 15 delete a; 16 }
以上是关于全局new和宏结合起来的一个小应用的主要内容,如果未能解决你的问题,请参考以下文章