day09-super关键字

This commit is contained in:
2026-07-25 14:19:57 +08:00
parent 5a0ccb04c7
commit 77931020b4
3 changed files with 37 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package com.inmind.this_super06;
public class Fu {
int num = 10;
int numFu = 20;
public void method(){
System.out.println("父类方法");
}
}