我正在为我的 Java 类介绍做一个项目,我们必须格式化一个 UML
+adjustQuantity(adjustingQuantity:int):void // Adjusts the book stored quantity by the given amount. The final
// must be >= 0
我已经获得了添加已应用的调整间隔的代码,
public void adjustQuantity(int adjustingQuantity)
{
int iAdjustingQuantity;
int iQuantity= this.quantity;
int iNewQuantity = (this.quantity + iAdjustingQuantity);
if(iNewQuantity <=0)
}
我遇到的问题是让值停止在 0。我只会做一个 if 语句,上面写着“如果小于 0,则返回 0”,但它没有返回任何东西,所以我不能这样做......所以我的问题我如何让它保持积极而不是消极?