(String[] args)
| 13 | } |
| 14 | public class ThisPointerImplicit { |
| 15 | public static void main(String[] args) { |
| 16 | // TODO Auto-generated method stub |
| 17 | Box b1 = new Box(2, 4, 6); |
| 18 | Box b2 = new Box(5, 5, 5); |
| 19 | System.out.println("Volume = " + b1.vol()); |
| 20 | System.out.println("Volume = " + b2.vol()); |
| 21 | } |
| 22 | } |