本帖最后由 student 于 2013-5-25 09:25 编辑
向HashSet集合中添加自定义的Student对象时,每一次遍历输出集合中的元素,输出顺序都不一样。为什么呢?输出顺序是根据什么决定的呢?
但是,如果向Set集合中添加字符串时,每次输出的结果都一样的,为了简便,下面的代码不演示添加String对象的情况。
代码:- import java.util.HashSet;
- import java.util.Iterator;
- import java.util.Set;
- 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 class Test {
- public static void main(String[] args) {
- Student s1 = new Student("java", 23);
- Student s2 = new Student("java", 24);
- Student s3 = new Student("student", 25);
-
- Set<Student> set = new HashSet<Student>();
- set.add(s1);
- set.add(s2);
- set.add(s3);
-
- Iterator<Student> it = set.iterator();
- while(it.hasNext()) {
- Student stu = it.next();
- System.out.println(stu.getName()+" : "+stu.getAge());
- }
- /*
- 运行结果(每次都不一样):
- java : 23
- student : 25
- java : 24
- */
- }
- }
复制代码 |