設計說明:
1. 請為冰品的每個原料Apple(蘋果)、Banana (香蕉)、Pudding(布丁)、Strawberry(草莓)、Mango(芒果)設計類別及繼承的架構,並提供getCost(成本), getPrice(售價)二個方法。
2. 每種類原料的成本與售價如下表:
類別名稱
|
Cost(成本)
|
Price(售價)
|
Apple
|
6.0
|
10.0
|
Banana
|
2.0
|
5.0
|
Pudding
|
3.0
|
5.0
|
Strawberry
|
1.0
|
5.0
|
Mango
|
2.0
|
5.0
|
參考程式碼:
TQC+ Java 試題總整理
- class Unit{
- double getCost,getPrice;
- Unit(){getCost = 0; getPrice = 0;}
- public double getCost(){return getCost;}
- public double getPrice(){return getPrice;}
- }
- class Apple extends Unit{
- Apple(){
- getCost=6;
- getPrice=10;
- }
- }
- class Banana extends Unit{
- Banana(){
- getCost=2;
- getPrice=5;
- }
- }
- class Pudding extends Unit{
- Pudding(){
- getCost=3;
- getPrice=5;
- }
- }
- public class JPA603_1{
- public static void main(String args[]){
- Apple ab = new Apple();
- Banana bb = new Banana();
- Pudding pt = new Pudding();
- System.out.println("Apple cost:" + ab.getCost());
- System.out.println("Apple price:" + ab.getPrice());
- System.out.println("Banana cost:" + bb.getCost());
- System.out.println("Banana price:" + bb.getPrice());
- System.out.println("Pudding cost:" + pt.getCost());
- System.out.println("Pudding price:" + pt.getPrice());
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com