custom implementation of interface methods
- by Renuka
Hello all,
I have a doubt in this scenario, I have posted some example code here....
public interface a{
public void m1();
public void m2();
public void m3();
.
.
.
public void m100();
}
public class A implements a{
public void m3(){
// implementation code
}…