String doubleSpace = " ";
String news = "The cat jumped. The dog did not.";
while (news.contains(doubleSpace) = true)
{
news=news.replaceAll(" ", " ");
}
上記はコンパイルされず、「unexpected type.required:variable, found:value」というエラーが表示されます。 String.contains() はブール値を返す必要があるため、理由がわかりません。