Java编写一个仿真购买手机与手机卡的例子

Java本次作业所有源码放到Github上:DWLLLL/Java_Homework (github.com)icon-default.png?t=M85Bhttps://github.com/DWLLLL/Java_Homework

点击绿色Code可以直接下载源码,无需复制操作。

 --------------------------------------------------------------------------------------------------------------------------------

编写一个仿真购买手机与手机卡的例子。
封装手机卡接口SIMable,它表示是手机卡,可以应用为移动卡也可以是联通卡,声明个方法以适应通用手机: vod setNumer(string n); String givNumereo:tring gveCorpName)…
(2)封装手机类Molcelephne既可以是单卡手机,也可以是双卡双待手机,也可以没有手机卡,取决于SIM卡, 因此,需要声明3个SIMable类型的属性,以对应单卡、双卡、无卡,编写3个构造方法。后期可能还会换卡,因此需要编写2个方法以适应修改卡: void useSIM(SIMablecard),void useSIM(SIMable cardI, SIMable card2),编写查看手机卡信息方法void showMess().
(3)封装移动手机卡SIMOfChinaMobile,需要实现SIMable接口,同时要封装手机号Stringnumber.
(4)封装联通手机卡SIMOChinaUnicom,需要实现SIMable接口,同时要封装手机号String
numberf
(5)端写仿真程序执行入口Test. 创建手机对象和移动卡对象和联通卡对象,查看信息。
 


public class Main {
    public static void main(String[] args) {
        SIMOfChinaMobile chinaMobile=new SIMOfChinaMobile();
        SIMOfChinaUnicom chinaUnicom=new SIMOfChinaUnicom();
        MobileTelephone phone0=new MobileTelephone();
        MobileTelephone phone1=new MobileTelephone(chinaMobile);
        phone1.useSIM(chinaUnicom);

    }

}


public class MobileTelephone {
	SIMable one;
	SIMable two;
	SIMable three;
	public MobileTelephone() {
		System.out.println("该手机不可安装手机卡");
	}
	public MobileTelephone(SIMable a) {
		System.out.println("该手机为单卡手机");
		a.setNumber("13423413576");
		one=a;
		showMess(one);
	}
	public MobileTelephone(SIMable a,SIMable b){
		System.out.println("该手机为双卡手机");
		two=a;
		three=b;
		showMess(two,three);
	}
	public void useSIM(SIMable card) {
		System.out.println("将"+one.giveCorpName()+"手机卡更换为"+card.giveCorpName()+"手机卡");
		card.setNumber("15323578911");
		one=card;
		showMess(one);
	}
	public void useSIM(SIMable card1,SIMable card2) {
		System.out.println("将"+two.giveCorpName()+"手机卡更换为"+card1.giveCorpName()+"手机卡");
		System.out.println("将"+three.giveCorpName()+"手机卡更换为"+card2.giveCorpName()+"手机卡");
		card1.setNumber("15323578911");
		card2.setNumber("15675423445");
		two=card1;
		three=card2;
		showMess(two,three);
	}
	public void showMess(SIMable card) {
		System.out.println("该手机卡为"+card.giveCorpName());
		System.out.println("该手机卡号为"+card.giveNumber());
	}
	public void showMess(SIMable card1,SIMable card2){
		System.out.println("该手机卡1为"+card1.giveCorpName());
		System.out.println("该手机卡号1为"+card1.giveNumber());
		System.out.println("该手机卡2为"+card2.giveCorpName());
		System.out.println("该手机卡号2为"+card2.giveNumber());
	}
}
public interface SIMable {
	void setNumber(String n);
	String giveNumber();
	String giveCorpName();
}
public class SIMOfChinaUnicom implements SIMable {
	String number;

	public void setNumber(String number) {
		this.number=number;
	}

	public String giveNumber() {
		return number;
	}

	public String giveCorpName() {
		return "中国联通";
	}

}
public class SIMOfChinaMobile implements SIMable {
	String number;
	public void setNumber(String number) {
		this.number = number;
	}

	public String giveNumber() {
		return number;
	}

	public String giveCorpName() {
		return "中国移动";
	}

}

封装一个类CountNumber,包含一个方法public int[] count(String s), 统计每个数字在字符串出现的次数,返回值是10个元素构成的数组,每个元素存储的是一个数字出现的次数.倒如:在执行完int[] count(" 12203AB3")之后, count[0]为 1, count[]为1, count(2)为2, coun[3)为2。封装执行主类。
 



public class Main {
    public static void main(String[] args) {
        CountNumber countNumber=new CountNumber();
        countNumber.count("1324AVE32");

    }

}
public class CountNumber {
    public int[] count(String s) {
        int[] a = new int[10];
        for (int i=0;i<10;i++) {
            a[i] = 0;
        }
        char[] b=s.toCharArray();
        for (int i = 0; i<10; i++) {
            for(int j=0;j<s.length();j++){
                if ( (int)b[j] == i+48) {
                    a[i]++;
                }
            }
        }
        for (int i=0;i<10;i++)
            System.out.println("count["+i+"]:"+a[i]);
        return a;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值