怎么 使用ArrayList、HashSet 和 HashMap 来存储 5 个学生对象,并遍历它们。
时间: 2024-02-01 09:14:52 浏览: 76
可以按如下方式使用ArrayList、HashSet和HashMap来存储5个学生对象,并遍历它们:
```java
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
public class Student {
private String name;
private int age;
public Student(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
public static void main(String[] args) {
// 创建5个学生对象
Student s1 = new Student("小明", 18);
Student s2 = new Student("小红", 19);
Student s3 = new Student("小芳", 20);
Student s4 = new Student("小刚", 21);
Student s5 = new Student("小丽", 22);
// 使用ArrayList存储学生对象
ArrayList<Student> list = new ArrayList<>();
list.add(s1);
list.add(s2);
list.add(s3);
list.add(s4);
list.add(s5);
// 遍历ArrayList
System.out.println("使用ArrayList存储学生对象:");
for (Student s : list) {
System.out.println(s.getName() + " " + s.getAge());
}
// 使用HashSet存储学生对象
HashSet<Student> set = new HashSet<>();
set.add(s1);
set.add(s2);
set.add(s3);
set.add(s4);
set.add(s5);
// 遍历HashSet
System.out.println("使用HashSet存储学生对象:");
for (Student s : set) {
System.out.println(s.getName() + " " + s.getAge());
}
// 使用HashMap存储学生对象
HashMap<String, Student> map = new HashMap<>();
map.put("001", s1);
map.put("002", s2);
map.put("003", s3);
map.put("004", s4);
map.put("005", s5);
// 遍历HashMap
System.out.println("使用HashMap存储学生对象:");
for (String key : map.keySet()) {
Student s = map.get(key);
System.out.println(key + " " + s.getName() + " " + s.getAge());
}
}
}
```
在上述代码中,我们创建了一个Student类来表示学生,它有两个属性:name和age。然后我们创建了5个学生对象s1、s2、s3、s4、s5,分别存储它们到ArrayList、HashSet和HashMap中,并使用相应的迭代方法遍历它们。
阅读全文