1. ホーム
  2. java

[解決済み] Javaです。System.out.println()の引数を複数行にまたがるようにする?

2022-02-26 08:40:43

質問

次のようなメッセージが表示されます。

System.out.println("Players take turns marking a square. Only squares not already marked can be picked. Once a player has marked three squares in a row, he or she wins! If all squares are marked and no three squares are the same, a tied game is declared. Have Fun!");

このメッセージは非常に長く、画面全体に広がっているので、コードのデザインフローを壊さないように、セグメントに分割したいと思います。しかし、Enterキーを押すと、Javaはその行を文字列として解釈しなくなりました。Javaはそれを別のステートメントとみなしてしまうのです。どうしたらJavaに複数行のprint文を解釈させることができるでしょうか?

どのように解決するのですか?

こんなものをお探しではありませんか?

String line = "Information and stuff" + 
          "More information and stuff " + 
          "Even more information and stuff";

System.out.println(line);