2

Java,如何在 main 之外创建哈希映射,但在 main 或其他方法中引用它 import java.util.*;

import java.util.Map.Entry;

// Create a hash map 

        HashMap<String, Double> hm = new HashMap<String, Double>();

// Put elements into the map

        hm.put("John Doe", new Double(3434.34)); 
        hm.put("Tom Smith", new Double(123.22)); 
        hm.put("Jane Baker", new Double(1378.00)); 
        hm.put("Todd Hall", new Double(99.22)); 
        hm.put("Ralph Smith", new Double(-19.08));

class HashMapDemo 
{ 

    public static void main(String args[])
    { 
        // Get a set of the entries

        Set<Entry< String, Double> > set = hm.entrySet();

        // Get an iterator

        Iterator<Entry< String, Double> > i = set.iterator();

        // Display elements

        while(i.hasNext())
        { 
            Entry< String, Double > me = i.next(); 
            System.out.print( me.getKey() + ": " ); 
            System.out.println( me.getValue() ); 
        }

        System.out.println();

        // Deposit 1000 into John Doe's account

        double balance = hm.get( "John Doe" ).doubleValue(); 
        hm.put( "John Doe", new Double(balance + 1000) ); 
        System.out.println( "John Doe's new balance: " + hm.get("John Doe"));

    } 
}
4

2 回答 2

6

问题是您试图从静态主目录访问实例值。要解决此问题,只需将您的 HashMap 设为静态即可。

static HashMap<String, Double> hm = new HashMap<String, Double>();

static {
    hm.put("John Doe", new Double(3434.34)); 
    hm.put("Tom Smith", new Double(123.22)); 
    hm.put("Jane Baker", new Double(1378.00)); 
    hm.put("Todd Hall", new Double(99.22)); 
    hm.put("Ralph Smith", new Double(-19.08));
}

现在这条线将可以访问hm

Set<Entry< String, Double> > set = hm.entrySet();
于 2012-06-20T23:35:48.167 回答
2

我同意 Glitch 的观点,但是您也可以创建一个类来设置您的哈希映射,并拥有一个getHM()返回它的函数。然后在您的主体中,您只需要创建:

  • 该类的对象,例如

    Test test = new Test();

  • 一个新的 HashMap 并为其分配 getHM() 的值,例如

    HashMap<String, Double> hm = test.getHM();

这将是你的班级测试

public class Test {
    HashMap<String, Double> hm;

    public Test() {
        hm = new HashMap<String, Double>();
        hm.put("John Doe", new Double(3434.34)); 
        hm.put("Tom Smith", new Double(123.22)); 
        hm.put("Jane Baker", new Double(1378.00)); 
        hm.put("Todd Hall", new Double(99.22)); 
        hm.put("Ralph Smith", new Double(-19.08));
    }

    public HashMap<String, Double> getHM() {
        return hm;
    }
}

我会说解决方案的选择取决于您的要求,但如果这是您唯一的问题,那么 glitch 给出的解决方案可能是最简单/最好的。

使用 static 关键字允许您检索 HashMap 而无需创建任何对象的实例。我相信这在内存使用方面更好(但我不是优化专家......)。

于 2012-06-21T00:01:19.270 回答