Hi Everyone,
Thanks for viewing this thread.
How do I do the code similar in Java? The syntax for the code below is C#.
public class Child : Parent
{
public Child(String a, String b) : base(c)
{
}
}
I would like to seek for your help on Java. I have found the similar way to add ": base(c)" behind the child overloaded constructor but it didn't work. Is there any thing I have to do for Java?
Thanks for the time.