利用接口做参数,写个计算器,能完成+-*/运算 定义一个接口Compute含有一个方法int computer(int n,int m); 设计四个类分别实现此接口,完成+-*/运算 (3
Posted HRZJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用接口做参数,写个计算器,能完成+-*/运算 定义一个接口Compute含有一个方法int computer(int n,int m); 设计四个类分别实现此接口,完成+-*/运算 (3相关的知识,希望对你有一定的参考价值。
package com.homework5; public interface Compute { //声明抽象方法 int computer(int n,int m); }
package com.homework5; public class jia implements Compute { @Override public int computer(int n, int m) { return n+m; } }
package com.homework5; public class jian implements Compute { @Override public int computer(int n, int m) { return n-m; } }
package com.homework5; public class cheng implements Compute { @Override public int computer(int n, int m) { return n*m; } }
package com.homework5; public class chu implements Compute { @Override public int computer(int n, int m) { return n/m; } }
package com.homework5; public class UseCompute { public void useCom(Compute com, int one, int two) { System.out.println(com.computer(one, two)); } }
package com.homework5; public class E { public static void main(String[] args) { UseCompute uc= new UseCompute(); uc.useCom(new jia(), 5, 8); uc.useCom(new jian(), 2, 8); uc.useCom(new cheng(), 5, 8); uc.useCom(new chu(), 40, 8); } }
以上是关于利用接口做参数,写个计算器,能完成+-*/运算 定义一个接口Compute含有一个方法int computer(int n,int m); 设计四个类分别实现此接口,完成+-*/运算 (3的主要内容,如果未能解决你的问题,请参考以下文章