day10-java中接口与接口之间的多继承关系

This commit is contained in:
2026-01-06 16:28:51 +08:00
parent 040cef564c
commit de4e187605
5 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.inmind.interface_extends07;
public interface MyInterfaceZi extends MyInterfaceFu1,MyInterfaceFu2{
void methodZi();
void method();
static void methodS3(){};
}