在Java中,要讓一個類實現一個接口,需要遵循以下步驟:
interface
關鍵字。接口中包含一組抽象方法(沒有具體實現的方法)和常量。public interface MyInterface {
void myMethod();
int myConstant = 42;
}
implements
關鍵字來實現之前定義的接口。然后,為接口中的每個抽象方法提供具體的實現。public class MyClass implements MyInterface {
@Override
public void myMethod() {
System.out.println("My method is called.");
}
}
在這個例子中,MyClass
實現了MyInterface
接口,并為myMethod()
方法提供了具體的實現。注意,我們使用了@Override
注解,這有助于編譯器檢查我們是否正確地實現了接口方法。
public class Main {
public static void main(String[] args) {
MyClass myClass = new MyClass();
myClass.myMethod(); // 輸出 "My method is called."
}
}
這就是如何在Java中讓一個類實現一個接口的方法。