1 / 10

Constructor Overloading

Constructor Overloading. One context in which you will regularly need to use overloading is when you write constructors for your classes. Constructors are methods that can be overloaded, just like any other method in a class.

meli
Télécharger la présentation

Constructor Overloading

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Constructor Overloading • One context in which you will regularly need to use overloading is when you write constructors for your classes. • Constructors are methods that can be overloaded, just like any other method in a class. • In most situations, you will want to generate objects of a class from different sets of initial defining data: tMyn

  2. package TimoSoft; public class MyClass { int x; MyClass() { System.out.println("Inside MyClass() constructor."); x=0; } MyClass(int i) { System.out.println("Inside MyClass(int) constructor."); x=i; } tMyn

  3. MyClass(double d) { System.out.println("Inside MyClass(double) constructor."); x=(int)d; } void getXvalue() { System.out.println("The value of the instance variable \nof the object " +this+" is "+x+"."); } } tMyn

  4. package TimoSoft; public class MyClassTest { public static void main(String[] args) { MyClass first=new MyClass(); MyClass second=new MyClass(52); MyClass third=new MyClass(13.6); first.getXvalue(); second.getXvalue(); third.getXvalue(); } } tMyn

  5. run: Inside MyClass() constructor. Inside MyClass(int) constructor. Inside MyClass(double) constructor. The value of the instance variable of the object TimoSoft.MyClass@19821f is 0. The value of the instance variable of the object TimoSoft.MyClass@addbf1 is 52. The value of the instance variable of the object TimoSoft.MyClass@42e816 is 13. BUILD SUCCESSFUL (total time: 1 second) tMyn

  6. One common reason that constructors are overloaded is to allow one object to initialize another. • The need to produce an identical copy of an object occurs often: tMyn

  7. package TimoSoft; public class MyClass { int x, y; MyClass() { System.out.println("Inside MyClass() constructor."); x=0; y=0; } MyClass(int i, int j) { System.out.println("Inside MyClass(int) constructor."); x=i; y=j; } tMyn

  8. MyClass(MyClass obj) { System.out.println("Inside MyClass(MyClass) constructor."); x=obj.x; y=obj.y; } void getXYvalues() { System.out.println("The value of the instance variables \nof the object " +this+" are "+x+" and "+y+"."); } } tMyn

  9. package TimoSoft; public class MyClassTest { public static void main(String[] args) { MyClass first=new MyClass(); MyClass second=new MyClass(52, 18); MyClass third=new MyClass(second); first.getXYvalues(); second.getXYvalues(); third.getXYvalues(); } } tMyn

  10. run: Inside MyClass() constructor. Inside MyClass(int) constructor. Inside MyClass(MyClass) constructor. The value of the instance variables of the object TimoSoft.MyClass@19821f are 0 and 0. The value of the instance variables of the object TimoSoft.MyClass@addbf1 are 52 and 18. The value of the instance variables of the object TimoSoft.MyClass@42e816 are 52 and 18. BUILD SUCCESSFUL (total time: 1 second) tMyn

More Related