利用接口做参数,写个计算器,能完成加减乘除运算。
/*
利用接口做参数,写个计算器,能完成加减乘除运算。
(1)定义一个接口Compute含有一个方法int computer(int n, int m)。
(2)设计四个类分别实现此接口,完成加减乘除运算。
(3)设计一个类UseCompute,类中含有方法:public void useCom(Compute com, int one, int two),
此方法能够用传递过来的对象调用computer方法完成运算,并输出运算的结果。
(4)设计一个主类Test,调用UseCompute中的方法useCom来完成加减乘除运算。
*/
public class Test {
public static void main(String[] args) {
// Compute cheng = new Cheng();
UseCompute uc = new UseCompute();
uc.useCom(new Add(), 2, 3);
uc.useCom(new Minus(), 10, 2);
uc.useCom(new Cheng(), 2, 3);
uc.useCom(new Chu(), 3, 1);
}
}
//定义一个接口Compute
public interface Compute {
int computer(int n, int m);
}
//加法
public class Add implements Compute {
@Override
public int computer(int n, int m) {
return m+n;
}
}
//减法
public class Minus implements Compute {
@Override
public int computer(int n, int m) {
return n-m;
}
}
//乘法
public class Cheng implements Compute {
@Override
public int computer(int n, int m) {
return n*m;
}
}
//除法
public class Chu implements Compute {
@Override
public int computer(int n, int m) {
// TODO Auto-generated method stub
return n/m;
}
}
//类UseCompute运算
public class UseCompute {
public void useCom(Compute com, int one, int two) {
int x = com.computer(one, two);
System.out.println("运算结果为:"+x);
}
}
版权声明:本文为weixin_51055570原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。