文章列表
public interface Test1{//接口类
void getvb() throws Exception;
}
//...............过程
public class Test{
public static void main(String[] args) throws Exception {
Test1.getvb();//可以直接调用接口的方法,而不去实现,请问大家在中间过程怎么搞!!!!!!
}
}