1

現在、Javaの入門クラス用のプログラムを書いています。私のパズルには2つのピースがあります。うまくいけば、これは質問に答えるのに比較的簡単です。

まず、これが私のメインプログラムとして使用しようとしているものです。

import java.util.Scanner;

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


    Scanner input = new Scanner(System.in);


    double newBalance = 0;
    double monthlyInterest = 0;
    int answer = 0;


    int i=1;
    while (i < 100) {
        System.out.print ("Please enter your ID: ");
        answer = input.nextInt();
        System.out.println(" ");
        if (answer >=0 && answer<10) 
        TheATMGame.runGame (answer);
        else
         System.out.println("Sorry, this ID is invalid.");
     }
    }


    public static void runGame(int id) {
      double amount = 0;
      int continueOn = 0;
      while (continueOn < 4) {
        ATMGame myATM = new ATMGame();
        Scanner input = new Scanner(System.in);
        System.out.println ("---Main menu--- ");
        System.out.println ("1: Check balance ");
        System.out.println ("2: Withdraw ");
        System.out.println ("3: Deposit ");
        System.out.println ("4: exit ");

        int answer = input.nextInt();

        if (answer == 1)
            System.out.println("your balance is: " + myATM.getBalance (id));
        else if (answer == 2){
            System.out.println("Enter an amount to withdraw: ");
            amount = input.nextInt();
            myATM.withdraw(amount, id);
        }
        else if (answer == 3)
{
            System.out.println("Enter an amount to deposit: ");
            amount = input.nextInt();
            myATM.deposit(amount, id);
        }
        else if (answer == 4)
            continueOn = 4;
        else if (answer > 4)
            System.out.println ("Please review the main menu. " +
                    "Your selection must be between 1-4.");
      }
    }

//ATM class (balance, annualInterestRate2, id2)
//ATM myATM = new ATM (20000, 4.5, 1122 );
//newBalance = myATM.withdraw(2500);
//newBalance = myATM.deposit(3000);
//monthlyInterest = myATM.getMonthlyInterestRate();
//System.out.println("Your current balance is: " + newBalance);
//System.out.println ("Your monthly interest rate is: " +  monthlyInterest);



}

これが、そのプログラムに実装したいすべてのクラスです。

import java.util.Date;

public class ATMGame  {

    private double annualInterestRate = 0;
    private double balance = 0;
    private int id = 11;
    private int[] ids = {0,1,2,3,4,5,6,7,8,9};
    private int[] balances = {100,100,100,100,100,100,100,100,100,100};
    public Date dateCreated;


    public ATMGame() {

    }
    public ATMGame (double balance2, double annualInterestRate2, int id2) {
        balance = balance2;
        annualInterestRate = annualInterestRate2;
        id = id2;
        dateCreated.getTime();
    }


    public double getMonthlyInterestRate() {
        double monthlyInterest = annualInterestRate/12;
        return monthlyInterest;
    }


    public double withdraw(double amountWithdrawn, int id) { //This method withdraws money from the account

        double newBalance = balances[id] - amountWithdrawn;
        System.out.println("Your withdrawel has processed. New balance: " + newBalance);
        balances[id] = (int) newBalance;
        return newBalance ;

    }


    public double deposit(double amountDeposited, int id) { //This method deposits money in the account
        double newBalance = balances[id] + amountDeposited;
        System.out.println("Your deposit has processed. New Balance is: " + newBalance);
        balances[id] = (int) newBalance;
        return newBalance ;

    }

    public double getBalance(int id) {
        double myBalance = balances[id];
        balance = myBalance;
        return myBalance ;
    }


}

最初のプログラムを実行しようとすると、「メインクラスが見つかりません」と表示されます。ご覧のとおり、これを処理するために「public void Main()...」という行を記述しましたが、明らかに機能しません。私は何が間違っているのですか?

「publicvoidMain(){」を「publicstatic void main(String [] args){」に置き換えても、「メインクラスが見つかりません」というエラーが返されます。:/

http://img21.imageshack.us/img21/9016/asdfsdfasdfg.jpg

Main.javaをTheATMGame.javaに変更し、ATMGame.javaから実行することで修正できました。

4

5 に答える 5

3

次を使用する必要があります。

public static void main(String[] args)

JVMが最初にこのメソッドを呼び出すため、Mainの代わりに。慣例です。

于 2009-05-05T15:36:45.583 に答える
3

メインを誤って定義しました。する必要があります:

public static void main(String[] args) {
    ....
}

ただし、コードで他の問題が発生する可能性があります。一目で...

  • main()はrunGame()と同様に関数であり、一方を他方の中で定義するべきではありません。
  • 2つのクラスに同じ名前を付けることはできません。main()クラスをATMGameとは異なる名前で呼び出します。
  • どこに行くのかわかりませんがATM class (balance, annualInterestRate2, id2)、有効なJavaではありません。
于 2009-05-05T15:36:58.487 に答える
3

メソッドのシグネチャは次のとおりである必要があります。

public static void main(String[] args) {
 ...
}

それはあなたが従わなければならない慣習です。それ以外は機能しません。

于 2009-05-05T15:37:43.943 に答える
1

クラスATMGameで、次を置き換えます。

public void Main() {

と:

public static void main(String[] args) {

さらに、このメソッドは静的である必要があるため、以下を変更する必要があります。

if (answer >=0 && answer<10)
     runGame (answer);
 else

と:

if (answer >=0 && answer<10)
     ATMGame.runGame (answer);
 else

rungame最後に、のメソッドシグネチャも静的になるように変更する必要があります。次の場所から変更します。

public void runGame(int id) {

に:

public static void runGame(int id) {
于 2009-05-05T15:43:50.497 に答える
0

パブリック クラスの名前は、ファイル名と一致する必要があります。これは、スクリーンショットには当てはまりません。また、すべてが正しくコンパイルされていることを確認してから、再試行してください (public static void main(String[] args) { ... } メソッドを使用)。

于 2009-05-05T16:20:00.817 に答える