gpt4 book ai didi

java - 通过方法传递的参数

转载 作者:行者123 更新时间:2023-12-01 18:24:54 25 4
gpt4 key购买 nike

我正在创建一个构造函数,我被告知要做的是:

  • quantity 参数将传递给 testQuantity 方法。”

  • “接下来,应通过 productName 调用 getPrice 方法”参数”

这就是我到目前为止对该构造函数的了解,变量已设置,我只需要一些帮助。

    public Order (String productName, int quantity) {
orderNum = orderNum + 1;
productName = this.productName;
quantity = testQuantity;
if (isValidOrder = true)

最佳答案

在这种情况下,你的构造函数应该是这样的:

public Order (String productName, int quantity) {
testQuantity(quantity); //Probably this should return a boolean or throw a exception
double price = getPrice(productName); //Probably it should return a quantity.
//other operations needed.
}

关于java - 通过方法传递的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26526791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com