public String toString() //toString withing Shiftsupervisor class
{
String employee = name + ", " + iD + ", " + hireDate + ", $" + AnnualSal + ", $" + ProdBonus;
return employee;
}
主要:
ShiftSupervisor supervisor1 = new ShiftSupervisor("John Smith", "123-A", "11-15-2005", 48000, 6500);
System.out.println(supervisor1);
我已经在我的 toString 中添加了“$”,但我希望它输出最后两个双精度为 48,000 和 6,500 << 添加逗号!
我可以在我的 setMethods 中这样做吗?