我收到此错误:此代码的“此方法必须返回字符串类型的结果”。此外,我还没有找到很多关于 .printf 方法的信息(我只是从我的教科书中得到它,因为我需要像他们在那里一样格式化它)。这个方法被删除了吗?
public String toString()
{
System.out.println("Shown are the prices for " +
"each seat. A 0 indicates the seat is " +
"unavailable.");
for(int i = 0; i < 9; i++)
{
for(int j = 0; j < 10; j++)
{
System.out.printf("%8d", seatArray[i][j]);
}
}
}