实验报告
(1)定义一个手机类,定义若干属性,方法和构造方法;
(2)定义测试类,其中定义多个手机类对象,并设置不同的初始值;
(3)调用手机类的相关方法,测试该类的功能。
public class S3_3 {
static class Mobile{
String brand;
String type;
int price;
String size;
int pixel;
public Mobile(){
}
public Mobile(String brand,String type,int price,String size,int pixel){
super();
this.brand=brand;
this.type=type;
this.price=price;
this.size=size;
this.pixel=pixel;
}
public void call(){
System.out.println("使用"+this.brand+this.type+"的手机打电话");
}
public void network(){
System.out.println("使用"+this.brand+this.type+"的手机上网");
}
public void playgame(){
System.out.println("使用"+this.brand+this.type+"的手机玩游戏");
}
}
}
public class S3_3Test extends S3_3{
public static void main(String[] args) {
Mobile[] mobiles=new Mobile[3];
mobiles[0]=new Mobile("苹果","12pro ",8000,"150*50",1200);
mobiles[1]=new Mobile("三星","note20",6000,"140*40",1100);
mobiles[2]=new Mobile("华为","mate40",9000,"160*60",1500);
System.out.println("\t\t手机信息一览表");
System.out.println("品牌\t型号\t\t价格\t\t尺寸\t\t像素");
System.out.println("-------------------------------------");
for(int i=0;i<mobiles.length;i++){
System.out.println(mobiles[i].brand+"\t"+mobiles[i].type+"\t"+mobiles[i].price+"\t"+mobiles[i].size+"\t"+mobiles[i].pixel);
}
System.out.println("-------------------------------------");
mobiles[2].network();
mobiles[0].playgame();
}
}
文章来源地址https://www.toymoban.com/news/detail-522804.html
文章来源:https://www.toymoban.com/news/detail-522804.html
到了这里,关于java实验报告——手机类的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!