gpt4 book ai didi

Java调用方法

转载 作者:行者123 更新时间:2023-12-01 19:48:18 28 4
gpt4 key购买 nike

import java.util.HashMap;
class Room1 {
private String description;
private HashMap<String, Room1> dir = new HashMap<String, Room1>();
Room1(String de) {
description = de;
}
public String toString() {
return description;
}
public void add(String s, Room1 r) {
dir.put(s, r);
}
}
class Game {
Room1 lobby = new Room1("lobby");
Room1 pub = new Room1("pub");
lobby.add("one", pub); //syntax error
}

当我调用add方法时。eclipse告诉我存在错误。我很困惑。我找不到问题。

最佳答案

您必须调用函数中的方法。

class Game {
Room1 lobby = new Room1("lobby");
Room1 pub = new Room1("pub");
public Game() {
lobby.add("one", pub);
}
}

关于Java调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52366950/

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