35.按要求编写Java程序: 编写一个接口:InterfaceA,只含有一个方法int method(int n); 编写一个类:ClassA来实现接口InterfaceA,实现int
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了35.按要求编写Java程序: 编写一个接口:InterfaceA,只含有一个方法int method(int n); 编写一个类:ClassA来实现接口InterfaceA,实现int 相关的知识,希望对你有一定的参考价值。
35.按要求编写Java程序:
(1)编写一个接口:InterfaceA,只含有一个方法int method(int n);
(2)编写一个类:ClassA来实现接口InterfaceA,实现int method(int n)接口方
法时,要求计算1到n的和;
(3)编写另一个类:ClassB来实现接口InterfaceA,实现int method(int n)接口
方法时,要求计算n的阶乘(n!);
(4)编写测试类E,在测试类E的main方法中使用接口回调的形式来测试实现
接口的类。
package Test03; public interface InterfaceA { int method(int n); }
package Test03; public class ClassA implements InterfaceA{ public int method(int n) { int sum = 1; for(int i = 1; i<=n;i++) { sum+=i; } return sum; } }
package Test03; public class ClassB implements InterfaceA { public int method(int n) { int sum = 1; for(int i = 1; i<=n;i++) { sum*=i; } return sum; } }
package Test03; public class TestE { public static void main(String[] args) { ClassA a= new ClassA(); System.out.println(a.method(4)); ClassB b= new ClassB(); System.out.println(b.method(4)); } }
以上是关于35.按要求编写Java程序: 编写一个接口:InterfaceA,只含有一个方法int method(int n); 编写一个类:ClassA来实现接口InterfaceA,实现int 的主要内容,如果未能解决你的问题,请参考以下文章
按要求编写Java程序: 编写一个接口:InterfaceA,只含有一个方法int method(int n); 编写一个类:ClassA来实现接口InterfaceA,实现int met