如何在打印語句中寫入if語句?if語句裏面的print語句?
public boolean checkEmpty()
{
if(array.isEmpty)
{
Sytem.out.println("The List is empty");
}
else
{
System.out.println("The list has: " + if(array.size() > 1)) {"Items"} + else {"item"});
}
}
無關的確切問題,但是我認爲你打算實際打印出物品的數量,而不僅僅是「物品」或「物品」。 –