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

Method main

Programs/constructors.java:19–25  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

17
18public class constructors {
19 public static void main(String[] args) {
20 // TODO Auto-generated method stub
21 Area rect1 = new Area(50, 25); // Object 1 instantiation
22 Area rect2 = new Area(30, 60); // Object 2 instantiation
23 rect1.rectArea(rect1); // Function call to calculate and print area of first object
24 rect2.rectArea(rect2); // Function call to calculate and print area of second object
25 }
26}

Callers

nothing calls this directly

Calls 1

rectAreaMethod · 0.95

Tested by

no test coverage detected