MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / Derived1

Class Derived1

Programs/derivedConstructor.java:17–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15 }
16}
17class Derived1 extends Derived {
18 public Derived1() {
19 System.out.println("Derived1 class constructor called!"); // Will be called after the first derived class
20 }
21}
22public class DerivedConstructors {
23 public static void main(String[] args) {
24 // TODO Auto-generated method stub

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected