I'm trying to implement interface like this :
public interface Human{
    void talk();
}
public class Ame implements Human{
    public static void talk(){
        System.out.println("Speak English");
    }
}
public class Chin implements Human{
    public static void talk(){
        System.out.println("Speak Chinese");
    }
}
public class test {
    public static void main(String[] args){
        Chin c = new Chin();
        c.talk();
        Ame a = new Ame();
        a.talk();
} 
}
But it shows errors :
Ame and Chin talk() cannot implement Human talk().
                     Methods is overridden as static .
Please tell me why this heppened and how to fix this error.
 
     
     
    