所以我希望能够拥有一个公共哈希表(有点像你将如何拥有一个公共 String 或 int 等字段)。我该怎么做呢?我试过这样的事情:
public class Home {
public static Hashtable<String, Double> test = new Hashtable<String, Double>();
public static void main(String[] args) {
test.put("A", 1.2);
test.put("B", 1.3);
test.put("C", 1.4);
System.out.println(test.get("A");
}
}
不过,我希望能够在另一个类中访问 Hashtable 及其信息。这样做的方法是什么?我有足够的吗?谢谢。