I know that this might sound like a stupid question, but why do I get an error which says something like "
cannot convert Object* to Object
" when I try to instantiate a new Object by using the statement "
Object obj = new Object();
"?
Am I to understand that the "new" keyword is reserved for pointers? Or is it something else?