day11-匿名内部类的定义和使用【重点】

This commit is contained in:
2026-07-28 11:22:06 +08:00
parent b718d1bc75
commit b574ec00d5
5 changed files with 93 additions and 0 deletions
@@ -0,0 +1,8 @@
package com.inmind.inner_class03;
public class NomalClass {
public void mehtod(){
System.out.println("普通类的method方法");
}
}