javaTEST

class Caaa {

public int length=1;//line 1

public int width=1;//line 2

public int height=1;//line 3

public vol(){

System.out.println(“volume=”+length*width*height);

}

}



public class test1 {

public static void main(String args[])

}

Cbbb bb=new Cbbb();

bb.set_num(5,7,9);//設定 length,width,height

bb.vol();

}

}



(1)請寫出Caaa的subclass Cbbb



(2)在 Caaa 中加入 constructor, Caaa(),設定length,width,height為5,7,9



在 Caaa 中加入 constructor, Caaa(int a,int b,int c)設定length,width,height為a,b,c



(4)在 Cbbb中加入 constructor,Cbbb (int a,int b,int c), 可用來呼叫Caaa (int a,int b,int c)



(5)如果line1,2,3 的public 改成 private 則 class Caaa,Cbbb,test1 要如何改寫 才能順利操作



(6)如果要列印出“體積為?“ 在class Cbbb 中要如何 overriding superclass Caaa的vol()

沒有留言:

張貼留言

蔡松霖
Related Posts with Thumbnails