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

Class A

Lecture 12 Methods Live/src/pw/skills/App.java:25–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25class A{
26 void printFromA(){
27 System.out.println("Printing from same package but different class");
28 App obj = new App();
29 System.out.println(obj.a);
30 System.out.println(obj.b);
31 System.out.println(obj.c);
32// System.out.println(obj.d);
33 }
34}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected