分类: Java
2008-08-10 22:55:00
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javatutorials;
/**
*
* @author wanpor
*/
//创建Shape接口
interface Shape{
public void draw();
}
//创建Action接口
interface Action{
public void hit();
}
//实现两个接口
class Wce implements Shape,Action{
public void draw(){
System.out.println("Wce draw");
}
public void hit(){
System.out.println("Wce hit");
}
}
public class Interface {
public static void main(String[] args){
Wce ce = new Wce();
ce.draw();
ce.hit();
Shape sp = (Shape)ce;
Action ac = (Action)ce;
sp.draw();
ac.hit();
}
}
1. 接口的声明,将方法声明为public;
2. 使用关键字interface
3. 一个类可以实现多个接口
4. 使用关键字implements
5. 使用接口访问Shape sp/Action ac
|