在Java中,implements
關(guān)鍵字用于實(shí)現(xiàn)一個(gè)接口。接口是一種定義抽象方法的集合,它規(guī)定了實(shí)現(xiàn)它的類必須具備這些方法。下面是一個(gè)簡(jiǎn)單的示例,展示了如何使用implements
關(guān)鍵字來編寫一個(gè)類實(shí)現(xiàn)一個(gè)接口:
public interface MyInterface {
void myMethod();
}
public class MyClass implements MyInterface {
@Override
public void myMethod() {
System.out.println("My method is called.");
}
}
在這個(gè)例子中,MyClass
類實(shí)現(xiàn)了MyInterface
接口,并提供了myMethod
方法的具體實(shí)現(xiàn)。@Override
注解表示我們正在重寫接口中的方法。
public class Main {
public static void main(String[] args) {
MyClass obj = new MyClass();
obj.myMethod(); // 輸出 "My method is called."
}
}
這就是如何在Java中使用implements
關(guān)鍵字編寫一個(gè)類來實(shí)現(xiàn)一個(gè)接口。