day10-继承父类并实现多个接口的注意事项

This commit is contained in:
2026-05-23 16:30:39 +08:00
parent 0da36bf18a
commit 7a1e0e5143
5 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.inmind.extends_impls06;
public interface MyInterface1 {
void method1();
void sameMethod();
}