⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employeetest.java

📁 java门禁系统源码,专业用于门禁系统开发
💻 JAVA
字号:
/*
 * EmployeeTest
 * 2007
 * 雇员测试
 */
package s2javaoo.xmal.test;

import s2javaoo.xmal.sys.ControlSys;
import s2javaoo.xmal.user.Employee;

public class EmployeeTest {

    public static void main(String[] args){
        Employee   employee   = new Employee("雇员张三丰"); // 雇员
        ControlSys controlSys = new ControlSys();          // 门禁系统
        System.out.println("门禁系统---雇员测试");
        System.out.println("***************************************************");

        while(true){
            employee.input(controlSys);
            controlSys.work();
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -