利用接口做参数,写个计算器,能完成加减乘除运算
(1)定义一个接口Compute含有一个方法int computer(int n,int m);
(2)设计四个类分别实现此接口,完成加减乘除运算
(3)设计一个类UseCompute,含有方法:
public void useCom(Compute com, int one, int two)
此方法要求能够:
1.用传递过来的对象调用computer方法完成运算
2.输出运算的结果
(4)设计一个测试类,调用UseCompute中的方法useCom来完成±*/运算
Computer.java👇
package work.fifteen;
public interface Computer {
int computer(int n, int m);
}
UseCompute.java👇
package work.fifteen;
public class UseCompute {
public static void useCom(Computer com,int one,int two){
System.out.println(