Is it necessary or good practice to call super()
when you're class only has Object
as a parent?
i.e.
public class Foo {
public Foo() {
super();
// Other stuff
}
}
or
public class Foo {
public Foo() {
// Other stuff
}
}
No. It's implicitly invoked, so theres no reason to call it.