我的Java Error构造函数在类中不能应用于给定的类型;

时间:2013-09-19 08:58:53

标签: java bluej

我是初学者,正在努力编写我的作品。但它不起作用。我收到此错误

"constructor account in class account cannot be applied to given types;
required: in,java,lang,String; found: no arguments; reason: actual and formal argument lists differ in..."

如果有人能向我解释这一点会非常感谢。

1 个答案:

答案 0 :(得分:5)

这很可能意味着您忘记将参数传递给构造函数。

class Account {
    Account(String name) {
      // ....
    }
} 

// somewhere in the code:
Account account = new Account();  // invalid, no arguments found, java.lang.String needed
Account account = new Account("some name");  // ok

请注意,在Java中添加带有参数的构造函数时,默认的无参数构造函数是而不是自动生成,您必须自己提供一个:

class Account {
    Account() {   
      // ....
    }

    Account(String name) {
      // ....
    }
} 

Account account = new Account();  // ok
Account account = new Account("some name");  // ok