1

好的..一个非常菜鸟的问题。

这是我第一次尝试用java编写一个类。

我创建了一个项目(银行)、一个包(银行)和两个类Account,以及Driver

所以,我的项目看起来像:

  Bank --> src-->bank --> Account.java --> Driver.java

现在Driver.javamain

我如何Account.javaDriver.java

bank在两个文件中都包含了包。

    Account myAccount = **Account**("foobar",12345); bold is where the error is.

它无法找到 Account 类。

谢谢

4

1 回答 1

13

在 Java 中,您使用关键字创建对象new

Account myAccount = new Account("foobar",12345);

作为旁注:如果您的所有类都在同一个中,则不需要导入它们,但如果您Account在另一个包中,则必须使用导入它

import path.to.package.Account;

您继续学习的另一个旁注,与这个问题无关:如果您只是调用 a static methodin Account.java,则不需要创建对象。你会喜欢:

Account.mymethod()
于 2012-09-23T20:36:19.793 回答