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,12 @@
package com.inmind.extends01;
public class Employee {
String name;
int age;
double salary;
double score;
public void work(){
}
}