使用 java 集合框架中的地图所需的建议

发布于 2024-12-10 12:55:30 字数 352 浏览 0 评论 0原文

我试图了解 Java Collections Framework 中的 Map 是如何工作的。我知道它将值映射到键,但是如果我想创建一个具有名字姓氏性别的员工怎么办,和一个ID(我将用它作为密钥)。

所以我尝试了这段代码...

Map <Employee> employeeMap = new HashMap<String,String,String,String,int>();

但它不喜欢这样,因为它只需要输入两个参数。那么,如何将整个员工添加到包含两个以上值的 Map 中?

I am trying to understand how a Map from the Java Collections Framework works. I understand that it maps values to a key, but what if I want to create an employee who has a first name, last name, gender, and an ID (which I would use as the key).

So I tried this code...

Map <Employee> employeeMap = new HashMap<String,String,String,String,int>();

But it doesn't like this, as it wants only two parameters to be entered. So, how do I add an entire employee to the Map which contains more then two values?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最初的梦 2024-12-17 12:55:30

你有一个 Employee 类,不是吗?

class Employee{
Integer id;
String firstname;
String lastname;
...
}

当你有一个 Employee 对象时,说“em
那么你可以

employeeMap.put(em.getId(), em);

you have an Employee class, don't you?

class Employee{
Integer id;
String firstname;
String lastname;
...
}

when you have an object of Employee, say "em"
then you can

employeeMap.put(em.getId(), em);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文