标签:inter 一个 接口 interface size oid create etc 注意
(1)
public static Student s; 声明一个类对象
public static Student getStudent(){ 系统自动分配一个getstudeng方法
return s;返回该类的对象
}
(2)
定义一个接口
package code;
public interface Mp3 {
public void sing();
IoTxResult<Student> createGisArea(Student var1);
IoTxResult<Student> cg();
}
private Mp3 m;定义接口的对象
public void setccc(){
IoTxResult<Student> g=m.createGisArea(s);可以用对象调用接口中定义的方法
IoTxResult<Student> h=m.cg();
}
标签:inter 一个 接口 interface size oid create etc 注意
原文地址:https://www.cnblogs.com/wyx1990/p/12989788.html