Java - 继承不同的if语句

发布于 2025-01-11 16:13:35 字数 473 浏览 0 评论 0原文

我目前有一个带有构造函数的超类

public Bread(double price)
{
    if (price > 0 && price <= 50)
    {
         this.price = price;
    }
}

,另一个类继承了上面的带有构造函数的类:

public TigerBread(double price)
    {
        if (price > 0 && price <= 100)
        {
             this.price = price;
        }
    }

正如你所看到的,它们都有不同的价格范围,但是当创建价格大于 50 的 TigerBread 时,我还需要它喂入范围为 0 - 50 的超类 Bread 中,这可能吗?

谢谢你!

I currently have a super class with the constructor

public Bread(double price)
{
    if (price > 0 && price <= 50)
    {
         this.price = price;
    }
}

And another class which inhertits the above class with the constructor:

public TigerBread(double price)
    {
        if (price > 0 && price <= 100)
        {
             this.price = price;
        }
    }

As you can see they both have different price ranges, however when creating a TigerBread with a price greater than 50, I also need it to be fed into the super class Bread which has a range of 0 - 50, is this possible?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文