wrt constructor chaining

Hi folks. The compiler provides a default constructor when we dont provide any. Let us say I provide a constructor with an argument and if I try to instantiate a subclass of that class then which constructor of the superclass gets called as it doesn't have a no-arg constructor and the compiler doesnt provide one in this case?

[335 byte] By [sukruthreddya] at [2007-10-3 3:21:05]
# 1
Unless you specify the super class constructor to use, and the parameter(s) to pass, with super you'll get a complier error.
malcolmmca at 2007-7-14 21:13:19 > top of Java-index,Java Essentials,Java Programming...
# 2
Thank you
sukruthreddya at 2007-7-14 21:13:19 > top of Java-index,Java Essentials,Java Programming...