授業でプログラムの課題があります。オーバーロードの基本はすでに理解していますが、ある点で完全に混乱しています。使用しようとしているメソッドのみから出力するにはどうすればよいですか? 説明するよりもコードをお見せしましょう。
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);
}
}
よし、じゃあ!クラス BoxTest を呼び出して、与えられたものだけを出力するにはどうすればよいですか。たとえば、Box BoxObject1 を使用して、残りではなく「XX の長さで作成された行」を出力したいと考えています。Box Box Object2 に対して、「長さ XX、幅 XX で作成された長方形」を出力したいと考えています。これを実現するために次に何を追加すればよいかわかりません。どんな助けでも大歓迎です。