概述
Application类
public class Application {
public static void main(String[] args) {
MobileTelephone telephone=new MobileTelephone();
SIM sim=new SIMOfChinaMobile();
sim.setNumber("1388765432");
telephone.useSIM(sim);
telephone.showMess();
sim=new SIMOfChinaUnicom();
sim.setNumber("13097656437");
telephone.useSIM(sim);
telephone.showMess();
}
}
MobileTelephone类
public class MobileTelephone {
SIM card;
public void useSIM(SIM card){
this.card=card;
}
public void showMess(){
System.out.println("使用的卡是:"+card.giveCorpName()+"提供的");
System.out.println("手机号码是:"+card.giveNumber());
}
}
SIM类
public abstract class SIM {
public abstract void setNumber(String n);
public abstract String giveNumber();
public abstract String giveCorpName();
}
SIMOfChinaMobile类
public class SIMOfChinaMobile extends SIM {
String number;
public String giveCorpName() {
return "中国移动";
}
public String giveNumber() {
return number;
}
public void setNumber(String n) {
number=n;
}
}
SIMOfChinaUnicom类
最后
以上就是唠叨西装为你收集整理的Java-SIM卡的全部内容,希望文章能够帮你解决Java-SIM卡所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复