JavaFX のこのラベルが、int から変換された後に次の文字列を拒否するのはなぜですか?
final int moonPhase = m.illuminatedPercentage();
System.out.println("The moon is " + moonPhase + "% full");
System.out.println("The next full moon is on: " + MoonPhaseFinder.findFullMoonFollowing(Calendar.getInstance()));
System.out.println("The next new moon is on: " + MoonPhaseFinder.findNewMoonFollowing(Calendar.getInstance()));
myLabel.setText(moonPhase.toString());
次のエラーが表示されます
error: int cannot be dereferenced myLabel.setText(moonPhase.toString());