1
2
37
168
486
170
看到第4章,首次接触到堆(heap)这个概念,不好理解,所以用vs2010反汇编跟踪下程序: // use_new.cpp -- using the new operator #include int main() { using namespace std; int nights = 65535; int * ni = &nights; int ...