Whats the difference between new Foo; and new Foo();
- by uberjumper
Can someone please explain what is the different between calling new like:
foo = new QtWidget();
I noticed alot of Qt's examples do this:
foo = new QtWidget;
I tried to Google this but didn't come up with anything.