Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public interface My extends My1,My2{
  2.  
  3. }
  4. interface My1{
  5. int i=10;
  6. }
  7. interface My2{
  8. int met(int a);
  9. }
  10.  
  11. My ob=new ClassImplementedMy();
  12. ob.i;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement