Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何做 getter/setter,但我想知道如何用 hashmaps 做它们?
我尝试将用户放入 HashMap 中,然后放入另一个类中,以便在 HashMap 中为用户创建一个 if 语句。
谢谢。
如果您只是想进出对象:
map.put(key, value); value = map.get(key);
如果我没有正确地解释你的问题,请原谅我。