constructor of a superclass

Hi allTell me something about this question plz "Does a class inherit the constructors of its superclass?"Thanx in advance.
[151 byte] By [chahalkhushwindera] at [2007-11-27 4:24:35]
# 1
> "Does a class inherit the constructors of its> superclass?"What do you think you get if you paste that into google search?Kaj
kajbja at 2007-7-12 9:32:24 > top of Java-index,Java Essentials,Java Programming...
# 2

if you mean:

public class A {

public A() {}

public A(int x, int y) {}

}

public class B extends A {

public B() {}

}

does B have "B(int x, int y)", the answer is no

calvino_inda at 2007-7-12 9:32:24 > top of Java-index,Java Essentials,Java Programming...
# 3
thanx for ur reply sir
chahalkhushwindera at 2007-7-12 9:32:24 > top of Java-index,Java Essentials,Java Programming...