欢迎来到天天文库
浏览记录
ID:14101415
大小:68.00 KB
页数:9页
时间:2018-07-26
《java程序设计基础实验三》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验报告三课程JAVA语言程序设计实验项目继承与接口成绩学号XXXXXX姓名XXXXX实验日期2012/10/13专业班级计算机科学与技术09级指导教师XXXXX一【实验目的】(1)掌握类和对象的创建方法(2)理解继承的相关概念(3)掌握子类对象的创建过程(4)掌握方法的继承与重写(5)理解多态的概念与上转型对象(6)理解抽象类和接口的概念及特点二【实验内容】【项目一】方法重写定义父类People,分别定义People类的子类ChinaPeople,AmericanPeople和BeijingPeople并分别重写父类中的各个方法。最后在主
2、方法中分别创建各子类的对象并调用各自的方法打印输出信息。该程序的模板代码见/附件/Example.java:请将其补充完整并调试运行。(1)程序代码classPeople{protecteddoubleweight,height;publicvoidspeakHello(){System.out.println("yayawawa");}publicvoidaverageHeight(){height=173;System.out.println("averageheight:"+height);}publicvoidaverageWeig
3、ht(){weight=70;System.out.println("averageweight:"+weight);}}classChinaPeopleextendsPeople{//doubleweight,height;//重写publicvoidspeakHello()方法,要求输出类似“你好,吃了吗”这样的//汉语信息publicvoidspeakHello(){System.out.println("你好,你吃了吗?");}//重写publicvoidaverageHeight()方法,要求输出类似//“中国人的平均身高:168
4、.78厘米”这样的汉语信息publicvoidaverageHeight(){height=168.78;System.out.println("中国人的平均身高:"+height);}//重写publicvoidaverageWeight()方法,//要求输出类似“中国人的平均体重:65公斤”这样的汉语信息publicvoidaverageWeight(){weight=65;System.out.println("中国人的平均体重:"+weight);}publicvoidchinaGongfu(){//输出中国武术的信息,例如:"坐如
5、钟,站如松,睡如弓"等System.out.println("坐如钟,站如松,睡如弓");}}classAmericanPeopleextendsPeople{//重写publicvoidspeakHello()方法,要求输出类似//“Howdoyoudo”这样的英语信息。publicvoidspeakHello(){System.out.println("Howdoyoudo");}//重写publicvoidaverageHeight()方法publicvoidaverageHeight(){height=173;System.out.
6、println("Americanaverageheight:"+height);}//重写publicvoidaverageWeight()方法publicvoidaverageWeight(){weight=70;System.out.println("Americanaverageweight:"+weight);}publicvoidamericanBoxing(){//输出拳击的信息,例如,“直拳”、“钩拳”等System.out.println("直拳,上勾拳");}}classBeijingPeopleextendsChina
7、People{//重写publicvoidspeakHello()方法,要求输出类似“您好”这样的汉语信息publicvoidspeakHello(){System.out.println("您好啊!!!!!!!!!!!!");}//重写publicvoidaverageHeight()方法publicvoidaverageHeight(){height=175;System.out.println("北京人的平均身高:"+height);}//重写publicvoidaverageWeight()方法publicvoidaverageWe
8、ight(){weight=20;System.out.println("北京人的平均体重:"+weight);}publicvoidbeijingOpera(){//输出京剧的
此文档下载收益归作者所有