java多线程    Java入门    vsftp    ftp    linux配置    centos    FRP教程    HBase    Html5缓存    webp    zabbix    分布式    neo4j图数据库    

java interface教程

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.com
learn 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.com
learn java is so easy
*/

public class MathTeacher implements ITeacher{
	public void teach(){
		System.out.println("teach math");
	}
	public void preparingLesson(){
		System.out.println("preparing math's lesson");
	}
	public void checkingHomework(){
		System.out.println("checking student's 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 . Bookmark the permalink.
月小升QQ 2651044202, 技术交流QQ群 178491360
首发地址:月小升博客https://java-er.com/blog/java-interface/
无特殊说明,文章均为月小升原创,欢迎转载,转载请注明本文地址,谢谢
您的评论是我写作的动力.

One Response to java interface教程

Leave a Reply