(String[] args)
| 15 | |
| 16 | public class StudentInterface { |
| 17 | public static void main(String[] args) { |
| 18 | // TODO Auto-generated method stub |
| 19 | arithmOp obj = new arithmOp(); |
| 20 | obj.add(10, 15); |
| 21 | obj.sub(15, 10); |
| 22 | System.out.println(it1.x + it1.y); // This works without errors (actually a wrong method - don't use) |
| 23 | System.out.println(obj.x + obj.y); // This works but gives errors. |
| 24 | } |
| 25 | |
| 26 | } |