-1

我有两个类,一个叫 Driver,另一个叫 BankAccount。在 Driver 中有一个称为 Driver 的方法,在 BankAccount 中有一个称为 Deposit 的方法。当我尝试从 Driver 方法调用 BankAccount.Deposit 时,我收到一条错误消息,提示“无法从静态上下文引用非静态方法 Deposit()”。

关于我应该对这些代码行做什么以使其运行的任何建议。

 import javax.swing.JOptionPane;
public class Driver
{
    int choice;
    String number;
    //public Driver()
    public Driver()
    {
         String number = JOptionPane.showInputDialog("1. Deposit 2. Withdraw 3. Balance 4. Change name 5. Exit");
         int choice = Integer.parseInt(number);
         do
         {
         if( choice == 1)
         {
             BankAccount.Deposit() = new Deposit();
             Driver.Driver = new Driver();
            }else if(choice == 2)
          {
              BankAccount.Withdrawl = new Withdrawl();
              Driver.Driver = new Driver();
            }else if(choice == 3)
            {
               BankAccount.getBalance = new getBalance();
               JOptionPane.showDialog(balance);
               Driver.Driver = new Driver();
            }else if(choice == 4)
            {
                name = JOptionPane.showInputDialog(" Please enter a name");
                Driver.Driver = new Driver();
            }else if(choice ==5)
            {
                JOptionPane.showDialog("Goodbye" + name);
            }
        }while( choice >= 1 && choice <= 5);
}
}

这是银行帐户方法

 import javax.swing.JOptionPane;
public class BankAccount
{
double balance = 400;
double deposit;
double withdraw;
double Interest = 1.05;
String name;
String accountNumber;

public BankAccount()
{
name = null;
accountNumber = null;
balance = 0;
}

public double Deposit()
{
    String input = JOptionPane.showInputDialog("How much would you like to deposit?");
    deposit = Integer.parseInt(input);
    if (deposit < 10000)
    {
        balance = (deposit + balance);

    }
    return balance;
}

}
4

3 回答 3

1

我不明白您为什么要这样编写代码。

java 中的方法名应该以小写字母 likedeposit和 not开头Deposit

BankAccount是一个类,并且Deposit是其中的一个非静态方法。

因此,对于使用Deposit方法,您必须首先创建一个BankAccount类的对象/实例,如下所示:

BankAccount b =new BankAccount();

然后使用使用该对象引用的任何方法:

b.Deposit();
b.Withdraw();

你应该这样写:

if( choice == 1)
{
     BankAccount b = new BankAccount();
     b.Deposit();
}

你需要为提款和其他做同样的事情

else if(choice == 2)
{
     BankAccount b = new BankAccount();
     b.Withdrawl();
     Driver.Driver = new Driver();
}
于 2012-12-20T04:46:25.147 回答
0

您的“意图”的工作版本:

import javax.swing.JOptionPane;
public class Driver
{
    int choice;
    String number;
    BankAccount myAccount=null;

    public Driver()
    {
    myAccount=new BankAccount();
    }

    public void drive()
    {
    String number = "";
        int choice = 0;
        String name = "?";
         do
         {
             number = JOptionPane.showInputDialog("1. Deposit 2. Withdraw 3. Balance 4. Change name 5. Exit");
             choice = Integer.parseInt(number);
         if( choice == 1)
         {
             myAccount.Deposit();
            }else if(choice == 2)
          {
          // mAccount.Withdrawl();
          // missing method Withdraw1()
            }else if(choice == 3)
            {
        // BankAccount.getBalance = new getBalance();
        // missing method getBalance()
        // JOptionPane.showDialog(balance);
            }else if(choice == 4)
            {
                JOptionPane.showInputDialog(" Please enter a name");
        // todo i guess name should be used somewhere in bankaccount... like myAccount.setName(name)
            }else if(choice ==5)
            {
                // JOptionPane.showDialog("Goodbye" + name);
        // no showDialog method in JOptionPane
        return;
            }
        }while( choice >= 1 && choice <= 5);
    }

    public static void main(String pArgs[])
    {
    Driver driver=new Driver();
    driver.drive();
    }
}
于 2012-12-20T05:11:34.030 回答
0

这个说法:

BankAccount.Deposit() = new Deposit();

没有意义。首先,Deposit()是一个实例方法BankAccount。仅对 . 的特定实例调用它才有意义BankAccount。这就是编译器所抱怨的。

除此之外,还有一个Deposit()返回int值的问题,它不能出现在赋值语句的左侧。另外,您没有提到任何名为 的类Deposit,所以我不知道new Deposit()应该是什么。

您的代码中似乎还有类似的问题。例如,下一条语句:

Driver.Driver = new Driver();

完全是胡说八道——没有领域Driver.Driver

我建议您阅读教程了解实例和类成员

于 2012-12-20T04:47:04.700 回答