Skip to content

Instantly share code, notes, and snippets.

@anjanashankar9
Created December 20, 2019 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anjanashankar9/73609a494cb64c7b975e7d0891b16288 to your computer and use it in GitHub Desktop.
Save anjanashankar9/73609a494cb64c7b975e7d0891b16288 to your computer and use it in GitHub Desktop.
class B extends A{
//Constructor of B
B(){
System.out.println("B's constructor"); //This is not allowed
super();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment