黑马程序员技术交流社区

标题: The type Student is already defined [打印本页]

作者: Taekwon-boy    时间: 2015-4-24 14:45
标题: The type Student is already defined
package com.itheima;
/*需求:学生属性:姓名,年龄,,,,,地址
*  姓名和年龄相同的视为同学学生
*  保证学生的唯一性
*
* 步骤:
* 1,描述学生
* 2,定义Map容器,将学生作为键,地址作为值,存入。
* 3.获取map集合中的元素。
*
* */
import java.util.*;
class Student implements Comparable<Student>
{
        private String name;
        private int age;
        Student(String name,int age)
        {
                this.name=name;
                this.age=age;
        }
        public int compareTo(Student s)//覆盖compareTo方法。二叉树排序(正数负数0)
        {
                int num=new Integer(this.age).compareTo(new Integer(s.age));//年龄包装成对象,比较年龄。
                if(num==0)
                        return this.name.compareTo(s.name);//如果年龄相等,再比较姓名,姓名为字符串,本身具有compareTo方法。
                return num;
        }
        public int hashCode()
        {
                return name.hashCode()+age*34;
        }
        public boolean equals(Object obj)
        {
                if(!(obj instanceof Student))
                        throw new ClassCastException("类型不匹配");
                Student s =(Student)obj;
                return this.name.equals(s.name) && this.age==s.age;//保证学生的姓名年龄都不同才能存进来
        }       
        public String getName() {
                return name;
        }
        public void setName(String name) {
                this.name = name;
        }
        public int getAge() {
                return age;
        }
        public void setAge(int age) {
                this.age = age;
        }
        public String toString()
        {
                return name+":"+age;
        }
       
}
       



public class MapStudent
{
        public static void main(String[] args)
        {
                HashMap<Student,String> hm=new HashMap<Student,String>();
                hm.put(new Student("lisi1",21),"beijing");
                hm.put(new Student("lisi2",22),"shanghai");
                hm.put(new Student("lisi3",23),"nanjing");
                hm.put(new Student("lisi1",24),"wuhan");
                //第一种取出方式 keySet;
                Set<Student> keySet=hm.keySet();
//                Iterator<Student> it=keySet.iterator();
                Iterator<Student> it=hm.keySet().iterator();
                while(it.hasNext())
                {
                        Student stu=it.next();
                        String addr=hm.get(stu);
                        System.out.println(stu+"....."+addr);
                }
        }
}
提示Student已经被定义了,是不是Student不能跟本package里其他java内的class重名啊?
作者: 大西洋    时间: 2015-4-24 14:51
本帖最后由 大西洋 于 2015-4-24 14:52 编辑

是的! 同一个package里的类不可以重名~ 否则 import的时候,你到底要让Java导入哪个类才好呢?   换个名字吧~Student01就好





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2