gpt4 book ai didi

Java找不到类

转载 作者:行者123 更新时间:2023-11-30 07:34:08 25 4
gpt4 key购买 nike

当我输入一个简单的代码时,我得到一个我无法理解的错误代码。

代码是:导入静态 java.lang.System.out;

类使用账户{ public static void main(String[] args) {

    fred myAccount = new fred();
fred yourAccount = new fred();

myAccount.name = "Barry Burd";
myAccount.address = "222 Cyberspace Lane";
myAccount.balance = 24.02;

yourAccount.name = "Jane Q. Public";
yourAccount.address = "111 Consumer Street";
yourAccount.balance = 55.63;

myAccount.display();
out.println();
yourAccout.display();
}

然而,当我尝试编译代码时,我得到:

account2.java:9: cannot find symbol
symbol : class fred
location: class UseAccount
fred yourAccount = new fred();
^

我该如何修复这个错误?

我刚开始学习 java,这段代码直接来自教程。根据使用“fred myAccount = new fred();”的教程和“fred yourAccount = new fred();”确实定义了类,这部分代码下面的信息填写信息。

最佳答案

在您的代码中的某处,您需要一个文件 Fred.java(您应该使用大写字母名称,尽管 java 要求它)至少具有

 class Fred {
}

然后你需要填写它让它做一些事情。

更好的是,将类命名为 Account。

关于Java找不到类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5354873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com