Name: Anonymous 2010-09-07 10:10
Hi there!
Is there any difference between
Is there any difference between
new Foo(); and new Foo;?
new Foo(); and new Foo;?
() in new Foo(); is there for passing arguments to the constructor.new Foo; and new Foo();, the same constructor is called.