无法调用方法或更改HashMap中的值

时间:2015-04-06 09:08:37

标签: java hashmap

所以我首先定义了一个hashmap:

HashMap<String, PrivateChat> hash = new HashMap<String, PrivateChat>();

PrivateChat是一个具有String变体“ah”和方法“add”的类 但后来当我尝试:

hash.get(name).add("hahaha"); // Add the value "hahaha" to ah variant. 

它什么都不做。为了证明这是真的,我尝试了:

System.out.println(hash.get(name).ah);

输出为“”。
所以下次我尝试直接修改啊:

hash.get(name).ah += "hahaha";

奇怪的事情发生在我身上,啊依旧保持不变。
这真是一个奇怪的问题,我认为之前没有人遇到过,因为我在stackoverflow上找不到任何结果。

请帮忙:谢谢

这是我目前的PrivateChat代码:

class PrivateChat {
    public JPanel field1;
    public JTextArea textArea1;
    public JTextField textField1;
    public JButton Send;
    public JLabel eac;

    public String ah = "";

    PrivateChat(final String name, final BufferedWriter bw) {
        eac.setText("You are talking with " + name);
        textArea1.setEditable(false);
        Send.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                ArrayList<String> arr = new ArrayList<String>();
                arr.add(name);
                arr.add(textField1.getText());
                String nts = Convert.ConvertToString(arr);
                try {
                    bw.write("/tell");
                    bw.flush();
                    bw.write(nts);
                    bw.flush(); // Gut.
                    add("\n[you] " + textField1.getText());
                } catch (IOException e1) {
                    Send.setEnabled(false);
                    textField1.setEnabled(false);
                    textField1.setText("Failed: " + e1.toString());
                }
            }

        });
    }

    public void main(String name, BufferedWriter bw) {
        JFrame frame = new JFrame("PrivateChat");
        frame.setContentPane(new PrivateChat(name, bw).field1);
        frame.setPreferredSize(new Dimension(400, 300));
        // frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
    }

    public void add(String buf) {
        ah += buf;
        textArea1.setText(ah);
        System.out.println("added: " + ah);
    }
}

1 个答案:

答案 0 :(得分:3)

我已经测试了一个简化版本,你说这将是一个问题,以证明它应该工作。正如评论中提到的其他内容一样,您可能还有更多内容可以向我们展示代码中的某些内容可能会被破坏(抛出异常)。 此外,我强烈建议您将ah变量可见性更改为私有,并使访问者修改其值,您现在实施的方式并不是非常安全。

public class PrivateChat {

    public String ah = "";

    @Override
    public String toString() {
       return "PrivateChat{" +
            "ah='" + ah + '\'' +
            '}';
    }

}

public class A {

    HashMap<String, PrivateChat> hash = new HashMap<String, PrivateChat>();

    public static void main(String[] args) {
        A a = new A();
        String myMapKey = "AAAA";
        a.hash.put(myMapKey, new PrivateChat());
        System.out.println("before modification:" + a.hash.get(myMapKey).ah);

        a.hash.get(myMapKey).ah += "blahblah";

        System.out.println("after modification:" + a.hash.get(myMapKey).ah);
    }

}

before modification:
after modification:blahblah