in C++, what is the exact difference between both following dynamic object creations :
A* pA = new A; A* pA = new A();
I did some tests,
It's exactly the same, also performance wise :)