Question about how-to implement an interface
Posted
by davit-datuashvili
on Stack Overflow
See other posts from Stack Overflow
or by davit-datuashvili
Published on 2010-06-03T09:35:49Z
Indexed on
2010/06/03
9:44 UTC
Read the original article
Hit count: 135
algorithm
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.
© Stack Overflow or respective owner