1

次のように、HeadFirstJavaからコードを実行しようとしました。

public class PhraseOMatic {
   public static void main(String[] args){

    String[] wordListOne = {"24/7", "mult-iTier", "30,000 foot", "B-to-B", "win-win", "front-end", "web-based", "pervasive", "smart", "six-sigma", "critical-path", "dynamic"};

    String[] wordListTwo = {"empowered", "sticky", "value-added", "oriented", "centric", "distributed", "clustered", "branded", "outside-the-box", "positioned", "networked", "focused", "leveraged", "aligned", "targeted", "shared", "cooperative", "accelerated"};

    String[] wordListThree = {"process", "tipping-point", "solution", "architecture", "cor competency", "strategy", "mindshare", "portal", "space", "vision", "paradigm", "mission"};

    int oneLength = wordListOne.length;
    int twoLength = wordListTwo.length;
    int threeLength = wordListThree.length;

    int rand1 = (int) (Math.random() * oneLength);
    int rand2 = (int) (Math.random() * twoLength);
    int rand3 = (int) (Math.random() * twoLength);

    String phrase = wordListOne[rand1] + " " + wordListTwo[rand2] + " " + wordListThree[rand3];

    System.out.println("What we need is a " + phrase);
    }
}

そして、私がこのエラーを受け取るのはここです:

スレッド"main"java.lang.Errorの例外:未解決のコンパイルの問題:

at PhraseOMatic.main(apples.java:2)

エラーから2行目に問題があることがわかりますが、エラーを特定できます

4

3 に答える 3

2

例外トレース(PhraseOMatic.main(apples.java:2))を見てください。パブリッククラスはファイルPhraseOMaticとともに保存する必要がありPhraseOMatic.javaます。top-levelパブリッククラスの名前と.javaファイルは同じである必要があります。

于 2012-08-27T04:51:58.817 に答える
0

見てくださいPhraseOMatic.main(apples.java:2)。ファイルの名前apples.javaはですが、Javaでは、ファイルの名前はクラスと同じである必要があります。あなたの場合PhraseOMatic.java

于 2012-08-27T04:54:31.887 に答える
0

あなたのステークトレース:

PhraseOMatic.main(apples.java:2)

したがって、Javaを実行してクラスをレベル化することができません。あなたのJavaメインクラスはPhraseOMaticです

于 2012-08-27T04:54:52.927 に答える