[基础题]2.(*)利用接口做参数,写个计算器,能完成加减乘除运算。

来源:互联网 发布:linux修改nice值 编辑:程序博客网 时间:2024/06/05 07:40
/*2.(*)利用接口做参数,写个计算器,能完成加减乘除运算。
(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来完成加减乘除运算

*/

package HomeWork_10;public class Test_02 {//(4)public static void main(String[] args) {UseCompute uc = new UseCompute();Add  s1 = new Add();Sub  s2 = new Sub();Mul  s3 = new Mul();Div  s4 = new Div();System.out.print("和:");uc.useCom(s1,4,2);System.out.print("差:");uc.useCom(s2,4,2);System.out.print("积:");uc.useCom(s3,4,2);System.out.print("商:");uc.useCom(s4,4,2);}}interface Compute{//(1)接口int compute(int n,int m);}class Add implements Compute{//(2)public  int compute(int n,int m){return  n+m ;}}class Sub implements Compute{//(2)public  int compute(int n,int m){return n-m ;}}class Mul implements Compute{//(2)public int compute(int n,int m){return n*m;}}class Div implements Compute{//(2)public int compute (int n,int m){return n/m;}}class UseCompute{//(3)   Compute com就是Compute com =new Compute(); com.compute//new个com对象,对象调用方法,把one和two传参进去public void useCom(Compute com, int one, int two){//方法名,传参System.out.println(com.compute(one,two));}}


阅读全文
0 0
原创粉丝点击