我正在尝试为班级创建一个基于文本的游戏,但我一直在努力让我的主班 GCPUAPP 从我的 Artifact 班级中读取。
这是我为 GCPUAPP 类输入的代码:
Artifact artifact=new Artifact();
artifact.name="Harry Potter and the Deathly Hallows";
artifact.description="Harry and his friends save the qizarding world again";
r1.contents=artifact;
dialog();
它给了我一个关于“新工件”的错误。这是我在 Artifact 上的代码:
public abstract class Artifact{
String name, description;
public String toString(){
return name;
}
我是 Java 新手,所以我完全被卡住了。