day09--继承中的重写概述&注意事项

This commit is contained in:
2026-01-05 14:22:14 +08:00
parent fe56e5073a
commit 292c0b8cc4
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.inmind.extends_override03;
public class Fu {
public void method(){
System.out.println("父类的method方法");
}
}