Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

B.

java

package constr;

public class B extends C

B(){

super();

System.out.println("B constructor");

public static void main(String[] args)

B b = new B();

System.out.println("Hello from B");

You might also like