A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© tw-IT 初级黑马   /  2014-12-17 23:00  /  804 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class DataBase//数据库类
{
       
        static String [] stu=new String[10];
    public void store(String name)
        {
                if (checkRepeat(name))
                {
            return ;
                }

                stu[checknonull()]=name;
        }
        public int checknonull()
        {
                int num=0;
                for (int i=0;i<=stu.length-1 ;i++ )
                {
                        if (stu[i]==null)
                        {
                                num=i;
                        }
                }
                return num;
        }
        public boolean checkRepeat(String name)
        {
                boolean tag=false;
                for (int i=0;i<=stu.length-1 ;i++ )
                {
                        if (name.equals(stu[i]))
                        {
                                tag=true;
                        }
                }
                return tag;

        }
        public String   toString()
        {
                String str="";
                for (int i=0;i<=stu.length-1 ;i++ )
                {
                        str=str+stu[i]+",";
                }
                return str;
        }
}

class Student //学生类
{
        String name;
        String id;
        int    age;

    Student(String name,String id,int age)
        {
                this.name=name;
                this.id=id;
        this.age=age;
               
        }
        public static DataBase createDataBase()
        {
        DataBase data=new DataBase();
                return data;
        }
        public String  getName()
        {
       return this.name;
        }
     
}


class Demo3
{
        public static void main(String args[])
        {
          DataBase data=Student.createDataBase();
       
         data.store( new Student("weige","3444",34).getName());
         data.store( new Student("weige","3444",34).getName());
         data.store( new Student("weige","3444",34).getName());
         data.store( new Student("weige","3444",34).getName());

         System.out.println(data.toString());
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马