乐清联科网站建设,天津魔方网站建设,深圳英迈思做网站好么,大连海外网站建设发表于 2012-10-10 09:54:47 by 月小升java interface就是表示一个接口#xff0c;接口只有方法#xff0c;但是没有实际的实现。实现他的接口可以采用不同的程序。Java the interface is a set of methods statement to be some method features, a set of interfaces only …发表于 2012-10-10 09:54:47 by 月小升java interface就是表示一个接口接口只有方法但是没有实际的实现。实现他的接口可以采用不同的程序。Java the interface is a set of methods statement to be some method features, a set of interfaces only methods of characteristics of no method to realize, so these methods can in different places were different class implements, and these can realize with different behavior (function).In its most common form, an interface is a group of related methods with empty bodies.For example/**java-er.comlearn java is so easy*/import java.util.*;public interface ITeacher{public void teach();public void preparingLesson();public void checkingHomework();}a class realize the interface/**java-er.comlearn java is so easy*/public class MathTeacher implements ITeacher{public void teach(){System.out.println(teach math);}public void preparingLesson(){System.out.println(preparing maths lesson);}public void checkingHomework(){System.out.println(checking students homework of math);}public static void main(String[] args){ITeacher lucy new MathTeacher();lucy.teach();}/*we must achieve all the function from the interface*/}This entry was posted in JAVA and tagged java基础教程. Bookmark the permalink.月小升QQ 2651044202, 技术交流QQ群 178491360首发地址月小升博客 – https://java-er.com/blog/java-interface/无特殊说明文章均为月小升原创欢迎转载转载请注明本文地址谢谢