Guest User

Untitled

a guest
Jul 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. public class JavaMainClass {
  2.  
  3. public static void main (String args[]) throws IOException {
  4.  
  5. /*************************************** CONSTRUCTOR COPY AND OVERLOAD IN JAVA ***************************************** START ****************/
  6. ConstructorCopyAndOverload obj = new ConstructorCopyAndOverload("Rajat", 31);
  7. ConstructorCopyAndOverload obj2 = new ConstructorCopyAndOverload(obj);
  8. obj2.displayInfo();
  9. /*************************************** CONSTRUCTOR COPY AND OVERLOAD IN JAVA ***************************************** START ****************/
  10.  
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment