实验报告课程名称面向对象程序设计实验名称实验三、类和对象日期2018/4/9学生学号姓名班级实验目的:1.掌握面向对象编程语言中的类和对象的使用方法。2.理解类的封装性。实验条件:电脑一台、能上网查阅资料。实验内容与步骤:要求:设计和实现一个学生类,满足以下要求:1、学生具有学号、姓名、性别、年龄和专业等属性;2、可以修改和获取年龄和专业等信息;3、只能获取但不允许修改学生的姓名、性别和学号信息;4、只能通过学号、姓名、性别三个参数产生学生对象;5、学生年龄必须在[6-40]之间;6、学生性别需要使用枚举类型实现。7、编写一个测试例程,创建并输出一个学生的学号、姓名、性别、年龄和专业等信息。源码:packagezhy.shiyan3;publicclassStudent{publicStringsname;privateStringsnum;privateintage;privateSEXENMsex;privateStringmajior;publicintgetAge(){returnage;}publicintsetAge(intage){if(6=age&&age=40)returnage;else{System.out.println(输入年龄不正确);return0;}}publicStringgetMajior(){returnmajior;}publicvoidsetMajior(Stringmajior){this.majior=majior;}publicStringgetSname(){returnsname;}publicStringgetSnum(){returnsnum;}publicSEXENMgetSex(){returnsex;}publicStudent(Stringsname,Stringsnum,SEXENMsex){super();this.sname=sname;this.snum=snum;this.sex=sex;}publicenumSEXENM{Male,Female}}packagezhy.shiyan3;importzhy.shiyan3.Student.SEXENM;publicclassDemo{publicstaticvoidmain(String[]args){Studentstudent=null;student=newStudent(翟海洋,1525,SEXENM.Male);student.setAge(22);student.setMajior(软件);System.out.println(姓名:+student.sname+\n性别:+student.getSex()+\n学号:+student.getSnum()+\n专业:+student.getMajior());}}结果:实验总结(结论或问题分析):这次实验感觉真正用到java语言的知识,比前几次实验更能理解java语言,对类的分装有了更加直观的理解,当然还有很多不足需要改正。实验成绩任课教师签名