I was recently asked to rewrite a class that used inheritance, to a class that used composition instead. I ran into a problem when I was rewriting the toString() method; the method toString() would not return the string value, and I did not receive a runtime error or a compilation error. I ended up changing the return value to void and the method name to output. so rather than returning the string value I used system.out
my attempt to use toString
public String toString()
{
return String.format(
"%s: %s %s\n%s: %s\n%s: %.2f\n%s: %.2f\n%s: %.2f\n%s: %.2f",
"based-salaried commission employee", cEmp.getFirstName(), cEmp.getLastName(),
"social security number", cEmp.getSocialSecurityNumber(),
"gross sales", cEmp.getGrossSales(),
"commission rate", cEmp.getCommissionRate(),
"base salary",baseSalary,
"earnings", earnings());
}
what I settled with
public void outPut()
{
System.out.printf(
"%s: %s %s\n%s: %s\n%s: %.2f\n%s: %.2f\n%s: %.2f\n%s: %.2f",
"based-salaried commission employee", cEmp.getFirstName(), cEmp.getLastName(),
"social security number", cEmp.getSocialSecurityNumber(),
"gross sales", cEmp.getGrossSales(),
"commission rate", cEmp.getCommissionRate(),
"base salary",baseSalary,
"earnings", earnings());
}
My question is why aren't I receiving compilation or runtime error from javac when I use the toString() method, and why isn't it returning the string value if there isn't an error.
hope this isn't too strange of a question.
public void outPut()forpublic String toString()? Does not quite make sense. – Bhesh Gurung Nov 4 '11 at 16:01System.out.println(base);– Boann Nov 4 '11 at 16:24