摘要:1.new、delete、malloc、free关系new/delete是C++的运算符。new 调用构造函数用于动态申请内存,delete调用对象的析构函数,用于释放内存。malloc与free是C++/C语言的标准库函数, 也是用来申请和释放内存。由于malloc/free是库函数而不是运算符,...
阅读全文
11 2014 档案
摘要:C# Lock原文:http://www.dotnetperls.com/lockLocking is essential in threaded programs. It restricts code from being executed by more than one thread at t...
阅读全文
摘要:Debug -> Window -> Call Stack.
阅读全文