Lets take an example in C#
public class Foo { public Foo() { } public Foo(int j) { } } public class Bar : Foo { }
Now, All the pu
I think you can do the following:
public class Bar : Foo { public Bar (int i) : base (i) { } }
I may be a bit off -- but it's the general idea.