-4

Here is my little example code:

String legend = "Øzil";
if (legend.equals("Øzil")) {
    System.out.println("You should have bought him Moyes");
}

Whenever I try to compile this code I get this error message: error: Not a Statement* String legend = Øzil"

4

4 に答える 4

1

)if文の最後に抜けています

  if (legend.equals("Øzil") {
                          ^_____see here
于 2013-11-13T14:31:29.507 に答える
0

これは、使用している面白い文字が原因です。その ASCII コードを見つけて、代わりに使用する必要があります。

編集:おっと、私はそれが間違っていることがわかりました:)

于 2013-11-13T14:32:40.853 に答える