Leaf.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section6;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 普通员工很简单,就写一个构造函数就可以了
  6.  */
  7. public class Leaf extends Corp {
  8. //就写一个构造函数,这个是必须的
  9. public Leaf(String _name,String _position,int _salary){
  10. super(_name,_position,_salary);
  11. }
  12. }