运算符 newnew 最常的用法是作为运算符,这时候 new 会在堆上分配一块内存,并会自动调用类的构造函数,如:
string *str = new string("test new");
new 作为运算符时,它是 C++ 内置的,你不
2010-10-19