
Did I catch your attention with the megan fox picture?
I assume that the answer is yes, great.
Constructor overloading is not really different from a
method overloading.
In practice, all you have to do is to give different arguments to similar methods.
For a Fruit class,
Fruit(String name_, int count_)
and
Fruit(String name_, int count_, String color_)
are both constructors. They are similar in almost every way; only difference is that the second one has a color attribute.
Now, let's move to a more tricky subject. Calling a constructor from another constructor. You can ask why would I want to do that. Let's see it on our example:
05 | final static String SEPARATOR = ", " ; |
07 | Fruit(String name_, int count_){ |
12 | Fruit(String name_, int count_, String color_){ |
19 | public String toString(){ |
20 | String returnValue = "name: " +name+SEPARATOR+ "count: " +count; |
22 | returnValue += SEPARATOR+ "color: " +color; |
27 | public static void main(String[] args) { |
29 | Fruit apples = new Fruit( "apple" , 3 ); |
30 | System.out.println(apples); |
33 | Fruit melons = new Fruit( "melon" , 2 , "yellow" ); |
34 | System.out.println(melons); |
As you can see the example is pretty straightforward. This is the fruit class. There are two mandatory and one optional attribute related to my class. Fruit name and fruit count are mandatory and the color is optional. So to have this effect, I used constructor overloading.
Now lets see why would I want to call a constructor from another constructor. As you can see both constructors in the example share the mandatory attributes. So I can easily call the first constructor from the second one (by using this() keyword) and remove the code that has a reoccurence. The below code is improved in readability as you can see.
05 | final static String SEPARATOR = ", " ; |
07 | Fruit(String name_, int count_){ |
17 | Fruit(String name_, int count_, String color_){ |
22 | public String toString(){ |
23 | String returnValue = "name: " +name+SEPARATOR+ "count: " +count; |
25 | returnValue += SEPARATOR+ "color: " +color; |
30 | public static void main(String[] args) { |
31 | Fruit apple = new Fruit( "apple" , 3 ); |
32 | System.out.println(apple); |
34 | Fruit melon = new Fruit( "melon" , 2 , "yellow" ); |
35 | System.out.println(melon); |
No comments:
Post a Comment