欢迎来到天天文库
浏览记录
ID:57183587
大小:460.50 KB
页数:9页
时间:2020-08-05
《实验02-面向对象编程.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验二面向对象编程1.实验目的(1)掌握类与对象基本知识;(2)Java中的继承机制及包(package)、接口(interface)等的设计方法;(3)掌握static、this、super等关键字的使用;(4)掌握Java中两种比较器的用法。2.实验内容实验题1定义一个类Book,包含两个属性:一个是private的String类型的属性title、一个是private的float类型的属性listPrice,封装这两个属性的四个方法setTitle()和getTitle()、setListPrice()和geListPrice()。基本要求:(1)设计类Boo
2、k及类BookManagement,在类BookManagement中输出Book类的对象的两个private属性;(2)重写父类的toString()方法,实现Book类实例的两个属性的输出。packagepackage1;publicclassBook{privateStringtitle;privatefloatlistPrice;publicBook(StringTitle,floatprice){super();this.title=Title;this.listPrice=price;}publicBook(){super();}publicvoidse
3、ttitle(StringTitle){this.title=Title;}publicStringgettitle(){returntitle;}publicvoidsetlistPrice(floatprice){this.listPrice=price;}publicfloatgetlistPrice(){returnlistPrice;}publicStringtoString(){return("name:"+this.title+"Price"+this.listPrice);}}packagepackage1;publicclassBookManage
4、ment{publicstaticvoidmain(String[]args){Bookb1=newBook("HowtolearnJava?",45);System.out.println("name:"+b1.gettitle()+"Price"+b1.getlistPrice());System.out.println(b1.toString());}}实验运行结果:实验题2有两个类:MobileManagement和Mobile,Mobile类的的两个实例分别描述如图3.4所示两部手机名称及价格,类MobileManagement在包cn.edu.nwsua
5、f.jp.p3中,而Mobile在包cn.edu.nwsuaf.jp.p3.data中。基本要求:设计Mobile类与MobileManagement类,在类MobileManagement类中实例化Mobile类的对象使程序能够显示两部手机的价格和数量,运行结果如图3.5。E365,1780RMBM330,1450RMB图3.4手机及价格图图3.5运行结果packagecn.edu.nwsuaf.jp.p3.data;publicclassMobile{/***@paramargs*/privateStringMobilename;privateStringMob
6、ileprice;publicvoidsetMoilename(Stringname){this.Mobilename=name;}publicvoidsetMoileprice(Stringprice){this.Mobileprice=price;}publicStringgetMobilename(){returnthis.Mobilename;}publicStringgetMobileprice(){returnthis.Mobileprice;}publicMobile(Stringname,Stringprice){this.Mobilename=na
7、me;this.Mobileprice=price;}}packagecn.edu.nwsuaf.jp.p3;importjavax.swing.JOptionPane;importcn.edu.nwsuaf.jp.p3.data.*;publicclassMobileManagement{publicstaticvoidmain(String[]args){Mobilem1=newMobile("E365","1780.0RMB");Mobilem2=newMobile("M330","1450RMB");JOptionPane.showMessageDial
此文档下载收益归作者所有