public interface control {
public void stu(String name,int age);
}
public
class imliement implements control {
String name;
int age;
public void setname(String m){
name=m;
}
public void setage(int k){
age=k;
}
public void stu(String name,int age){
System.out.println(name+" is "+age+" old ");
}
}
public class make {
public void change(control m){
System.out.println("you are wrong ");
}
}
public class useit {
public static void main(String[] args) {
imliement con=new imliement();
con.setage(10);
con.setname("John");
con.stu(con.name,con.age);
make ch=new make();
ch.change(con);
}
}
感悟:
接口类就是一种非常实用的一种java中的大类,在接口的使用中,接口父类只是定义一个抽象的方法,不能实例化,在接口类的子类中,必须实现全部接口父类的全部方法,但是,子类还可以定义更多的方法来实现需要的东西。