MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

housekeeping/ExplicitStatic.java:29–32  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

27
28public class ExplicitStatic {
29 public static void main(String[] args) {
30 System.out.println("Inside main()");
31 Cups.cup1.f(99); // [1]
32 }
33 // static Cups cups1 = new Cups(); // [2]
34 // static Cups cups2 = new Cups(); // [2]
35}

Callers

nothing calls this directly

Calls 1

fMethod · 0.65

Tested by

no test coverage detected