java interfaceof,java interface教程
發表于 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.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 java基礎教程. Bookmark the permalink.
月小升QQ 2651044202, 技術交流QQ群 178491360
首發地址:月小升博客 – https://java-er.com/blog/java-interface/
無特殊說明,文章均為月小升原創,歡迎轉載,轉載請注明本文地址,謝謝
總結
以上是生活随笔為你收集整理的java interfaceof,java interface教程的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java中Word转PDF解决方案
- 下一篇: javascript做极简时钟特效,再简