| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1286 人关注过本帖
标题:JAVA练习题求助
取消只看楼主 加入收藏
jackyshen
Rank: 2
等 级:论坛游民
帖 子:53
专家分:35
注 册:2010-5-16
结帖率:100%
收藏
 问题点数:0 回复次数:5 
JAVA练习题求助
1.In the superclass sale add a method named double computerCharge()  在superclass sale加上一个method叫double computerCharge()
2.As it cannot be defined(no common scheme)make this method abstract.这句没理解,好像是不能定义这个method abstract
3.this requires the class also to be abstract 这个class也要求abstract
4.Override this method in both subclasses using the scheme specified 也没理解
5.Now the method computerCharge() cna be called polymorphically in the class ManageSales 现在方法computerCharge()能叫polymorphically在class ManageSales

小弟在国外念书,老 师讲什么只略懂,所以寻求各位的帮助


 class Sale {
     private String address;
     public Sale(String add);
     {  address= add;}
     public String getAddress()
     {return address;
     }
 
}
 
 class NegotiatedSale extends Sale
 {
     private String address;
     private double commRate;
     private double salePrice;
     public NegotiatedSale(String add, double price, double cRate)
   
     { super(add);
       salePrice=price;
       commRate=cRate;
     }
 }
 
 
 class AuctionSale extends Sale
 {
     private double basePrice;
     private double actualPrice;
     private double bonusRate;
     public AuctionSale(String add, double bPrice, double aPrice, double bRate)
   
     {super(add);
     basePrice=bPrice;
     actualPrice=aPrice;
     bonusRate=bRate;
   
     }
 }
 
public class ManageSales
{
    public static void man(String args[])
    {
        Sale s[]=new Sale[4];
        s[0]=new NegotiatedSale("34 Kew crt", 34000, 0.05);
        s[1]=new AuctionSale("5 Bet crt", 560000, 565000, 0.10);
        s[2]=new AuctionSale("12 Ron dr", 24000, 290000, 0.15);
        s[3]=new NegotiatedSale("2 Johnst", 420000, 0.03);
        for (int i=0;i<4;i++)
        System.out.println(s[i].getAddress());

    }
}
   
谢 谢


[ 本帖最后由 jackyshen 于 2010-5-16 18:47 编辑 ]
搜索更多相关主题的帖子: JAVA 练习题 
2010-05-16 13:45
jackyshen
Rank: 2
等 级:论坛游民
帖 子:53
专家分:35
注 册:2010-5-16
收藏
得分:0 
分数都用完了,没了
2010-05-16 18:46
jackyshen
Rank: 2
等 级:论坛游民
帖 子:53
专家分:35
注 册:2010-5-16
收藏
得分:0 
那有办法追加分吗
2010-05-16 18:51
jackyshen
Rank: 2
等 级:论坛游民
帖 子:53
专家分:35
注 册:2010-5-16
收藏
得分:0 
谢谢,可是第4题我还是没有很理解。
如何在子类里写computerCharge
2010-05-16 19:14
jackyshen
Rank: 2
等 级:论坛游民
帖 子:53
专家分:35
注 册:2010-5-16
收藏
得分:0 
那第5题也可以把代码写出来吗,谢谢

2010-05-16 19:59
jackyshen
Rank: 2
等 级:论坛游民
帖 子:53
专家分:35
注 册:2010-5-16
收藏
得分:0 
谢谢
2010-05-16 21:49
快速回复:JAVA练习题求助
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026733 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved