java基础案例3-3查看手机配置和功能

package com.itheima;

public class Phone {
    private String brand;
    private int type;
    private int price;
    private String os;
    private String memory;

     public String getBrand(){
         return brand;
     }
     public void setBrand(String brand)
     {
         this.brand = brand;
     }

     public String  getType(){
         return brand;
    }
    public void setType(int type){
         this.type = type;
    }

    public int getPrice(){
         return price;
    }
    public void setPrice(int price){
         this.price = price;
    }

    public String getOs(){
         return os;
    }
    public void setOs(String os){
         this.os = os;
    }

    public String getMemory(){
         return memory;
    }
    public void setMemory(String memory)
    {
        this.memory = memory;
    }

    public Phone(){
    }
    public Phone(String brand, int type, int price, String os, String memory){
         this.brand = brand;
         this.type = type;
         this.price = price;
         this.os = os;
         this.memory = memory;
    }

    public String about(){
         return "手机品牌" + this.brand + ",手机型号为"+ this.type;
    }
    public String call(String no){
         return "使用" + this.brand + "手机打电话给" + no;
    }
    public String playGame(){
         return this.brand + "手机游戏";
    }
    public String downloadMusic(){
        return this.brand + "手机下载音乐";
    }
    public String playMusic(){
         return this.brand + "手机播放音乐";
    }
}


package com.itheima;

public class Main {
    public static void main(String[] args){
        Phone phone1 = new Phone("vivo", 1, 2000, "windows", "128G");
        System.out.println(phone1.about());
        System.out.println(phone1.call("123456"));
        System.out.println(phone1.playGame());
        System.out.println(phone1.downloadMusic());
        System.out.println(phone1.playMusic());
        System.out.println("------------------------------------------------");

        Phone phone2 = new Phone();
        phone2.setBrand("oppo");
        phone2.setType(2);
        phone2.setPrice(2300);
        phone2.setOs("linux");
        phone2.setMemory("248G");

        System.out.println(phone2.about());
        System.out.println(phone2.call("24689"));
        System.out.println(phone2.playGame());
        System.out.println(phone2.downloadMusic());
        System.out.println(phone2.playMusic());
    }
}

  • 2
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
import javax.microedition.lcdui.Command; import javax.microedition.lcdui.CommandListener; import javax.microedition.lcdui.Displayable; import javax.microedition.lcdui.Form; import javax.microedition.lcdui.Image; import javax.microedition.lcdui.ImageItem; import javax.microedition.lcdui.Item; import javax.microedition.lcdui.TextField; public class PhoneAdd extends Form { private UIController controller; private Command BACK_COMMAND; private Command SAVE_COMMAND; private TextField nameField; private TextField phoneField; private TextField QQField; private TextField sexField; private TextField ageField; // private ImageItem iconQQ; // private Image icon; public PhoneAdd(String title, UIController control) { super(title); controller = control; this.setCommandListener(new PhoneAddListener()); BACK_COMMAND = new Command("返回", Command.BACK, 1); SAVE_COMMAND = new Command("确认", Command.OK, 2); this.addCommand(BACK_COMMAND); this.addCommand(SAVE_COMMAND); /* try{ icon=Image.createImage("/icon/7.png"); }catch(java.io.IOException e){ icon=null; System.out.println("图片导入异常"); } */ nameField = new TextField("名字", "", 16, TextField.ANY); phoneField = new TextField("电话", "", 16, TextField.PHONENUMBER); QQField = new TextField("QQ", "", 11, TextField.NUMERIC); sexField = new TextField("性别", "", 2, TextField.ANY); ageField = new TextField("年龄","",3,TextField.NUMERIC); // iconQQ=new ImageItem("",icon,Item.LAYOUT_LEFT,"图片无法显示"); this.append(nameField); this.append(phoneField); this.append(sexField); // this.append(iconQQ); this.append(QQField); this.append(ageField); } public void clear() { nameField.setString(""); phoneField.setString(""); sexField.setString(""); QQField.setString(""); ageField.setString(""); } private class PhoneAddListener implements CommandListener { public void commandAction(Command command, Displayable disp) { if (command == BACK_COMMAND) { controller.handleEvent(UIController.EventID.EVENT_VIEW_BACK, null); } else if (command == SAVE_COMMAND) { String name = nameField.getString(); String phone = phoneField.getString(); String QQ = QQField.getString(); String sex = sexField.getString(); String age= ageField.getString(); if ((name == null || name.equals("")) || (phone == null || phone.equals(""))) { return; } Object[] args = { name, phone, QQ, sex ,age}; controller.handleEvent(UIController.EventID.EVENT_NEW_SAVE, args); } } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值