美国服务器的java中实现接口的方式有:1.使用implements关键字实现;2.使用匿名内部类实现;3.使用interface实现;
java中实现接口的方式有以下几种
1.使用implements关键字实现
public interface Com{}
public class Object implements Com{}
Com com = new Object();
2.使用匿名内部类实现
Thread thread=new Thread(new Runnable() {
public void run() {
}
});
3.使用interface实现
public interface IStudent {
final int X = 10;
float getScore(int studentNo);
int getStudentAge(int StudentNo);
}