In java, this seems so easy. You need a new object
Object test = new Object() gives me exactly what I want.
could someone please help me understand the different ways to do the
same thing in C++. I find my self sometimes, trying
Object app = Object();
Object *app = Object();
Object app = new Object();
randomly till something works... and this is bad because Im confused
what is happening, and the differences.
Someone please help...
As a java programmer, I really like the new keyword.
Object test = new Object() gives me exactly what I want.
could someone please help me understand the different ways to do the
same thing in C++. I find my self sometimes, trying
Object app = Object();
Object *app = Object();
Object app = new Object();
randomly till something works... and this is bad because Im confused
what is happening, and the differences.
Someone please help...
As a java programmer, I really like the new keyword.
Comment