如果'Test'是一个普通的类,那么之间有什么区别:
Test* test = new Test;
和
Test* test = new Test();
c++ constructor initialization c++-faq new-operator
在C中,malloc()返回void*.但在C++中,new返回的是什么?
malloc()
void*
new
double d = new int;
c++
c++ ×2
c++-faq ×1
constructor ×1
initialization ×1
new-operator ×1