day09-继承父类并实现多个接口

This commit is contained in:
2026-01-23 15:15:40 +08:00
parent 877350f3ec
commit c5f8658633
5 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.inmind.extends_interface06;
public interface MyInterface2 {
void method2();
void method();
void sameMethod();
}