I know I\'m asking some serious 101 question here...
I have some class Foo and a class Bar that extends Foo. In Foo
Foo
Bar
Use the super constructor:
super
public Bar(int a, double b, ...) { super(a, b, ...); }