Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // int1.java
- interface int1 {
- void a();
- void b();
- }
- // int2.java
- interface int2 {
- void b();
- void c();
- }
- //foo.java
- public class foo implements int1, int2 {
- // Что будет внутри
- }
Advertisement
Add Comment
Please, Sign In to add comment