I want to display the result of a method in my ToString, how can I do that? here is my code so far: you can see at the bottom line that I don't know what to write for getting the result of the "updatedPrice", can u help?
public double updatedPrice(double price){
this.price=price;
double ChangePriceRate, ChangePriceAmount, finalPrice;
if(name=="Bamba"){
ChangePriceRate = 0.15;
}else{
ChangePriceRate = 0.05;
}
ChangePriceAmount = price * ChangePriceRate;
if(name=="Bamba"){
finalPrice = price + ChangePriceAmount;
}else{
finalPrice = price - ChangePriceAmount;
}
}
public String toString (){
return "Name of the Snack: "+name+ "\n"+
"Name of the Company: "+comp+ "\n"+
"Price before discount: "+this.price+ "\n"+
"Price after discount: "+ **finalPrice?** + "\n";
}
b.t.w - I'm really new to this, a total begginer.** thank you.
Just call your method there:
Attention:
Generally I would advise AGAINST calling methods in the
toString()
method. It would be better if you only show the state of the class insidetoString()
and therefore only show the values of existing fields.This means in consequence that you should introduce a field called
finalPrice
and store your value there. After that you can show this value using thetoString()
method:Bonus point:
Do not use
==
for comparing strings, useequals()
instead if you want to compare the contents of strings!