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

Method Base

Programs/derivedConstructor.java:5–7  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3
4class Base {
5 public Base() {
6 System.out.println("Base class constructor called!"); // Will be called first
7 }
8 public Base(int x) {
9 System.out.println(x);
10 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected