Interface methods are abstract


Source code

1interface InterfaceMethodsAreAbstract {
2 void m1();
3
4 int m2();
5}

Bytecode



Other examples
Main page