im currently preparing for a job interview, and there is a question really makes me confused. people say that in java constructor can't be inherited, but code like this
public class childclass extends parentclass{
public childclass(){
super();
System.out.println("child");
}
public static void main(String[] args) {
childclass cc = new childclass();
}}
doesn't super() mean childclass inherited parentclass's constructor?