Advertisement
Ramdan51-062

MainClass

Oct 12th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class MainClass
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         MyClass t = new MyClass(0);
  6.         t.info();
  7.         t.info("overloaded method");
  8.         new MyClass();
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement