I have a program assignment in class. I already understand the basics of overloading but I am thoroughly confused on one point. How do I output from only the method I am trying to use? Well let me show you the code than explain.
public class Box {
private int length, width, height;
public Box(int length){
this.length=length;
System.out.println("Line created with length of" + length + ".");
}
public Box(int length, int width){
this.length = length;
this.width = width;
System.out.println("Rectangle created with the length of " + length + " ");
System.out.println("and the width of " + width + ".");
}
public Box(int length, int width, int height){
this.length=length;
this.width=width;
this.height=height;
System.out.println("Box created with the length of " + length + ", ");
System.out.println("the width of " + width + ", ");
System.out.println("and the height of " + height +".");
}
}
class BoxTest {
public static void main(String[] args) {
Box BoxObject1 = new Box(1,0,0);
Box BoxObject2 = new Box(1,2,0);
Box BoxObject3 = new Box(1,2,3);
}
}
Ok Now then! How do I call in the class BoxTest to output only what is given. For instance using Box BoxObject1 I want to output "Line created with lenght of XX" not the rest. For Box Box Object2 I want to ouput "Rectangle created with length of XX and width of XX". I am not sure what to add next for this to happen. Any help would be greatly appreciated.