(String[] args)
| 13 | } |
| 14 | public class Overloading { |
| 15 | public static void main(String[] args) { |
| 16 | // TODO Auto-generated method stub |
| 17 | SqRectArea sq = new SqRectArea(); // New object instantiation for square |
| 18 | sq.Area(5); // Calling function with 1 parameter |
| 19 | SqRectArea rect = new SqRectArea(); // New object instantiation for rectangle |
| 20 | rect.Area(10, 5); // Calling function with 2 parameters |
| 21 | } |
| 22 | } |