Question about how-to implement an interface
- by davit-datuashvili
I have the following interface:
public interface MyFunctor {
int myFunction(int x);
}
And I created a class which implements this interface :
public class Myfunction1 implements MyFunctor {
}
But it show me the error :
implement all abstract method
Please help me.