day09-继承的格式和基本使用

This commit is contained in:
2026-07-25 10:57:26 +08:00
parent e05426d3a5
commit aee7008602
5 changed files with 61 additions and 0 deletions
@@ -0,0 +1,8 @@
package com.inmind.extends01;
public class Assissant extends Employee {
public void help(){
System.out.println("助教在帮助学生");
}
}