MCPcopy Create free account
hub / github.com/Manvityagi/PW-Skills-Java-Course-Codes / Main

Class Main

Lecture 12 Methods Live/src/Main.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import pw.skills.*;
2
3public class Main {
4 public static void main(String[] args) {
5 App obj = new App();
6 System.out.println(obj.a);
7// System.out.println(obj.b);
8// System.out.println(obj.c);
9// System.out.println(obj.d);
10 }
11}
12
13//app2 -> child class, app -> parent class
14class App2 extends App{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected