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

软件工程

开发平台:

Java

  1. package com.company.state;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Client {
  7. public static void main(String[] args) {
  8. //定义一个普通的人
  9. Human human = new Human();
  10. //设置一个人的初始状态
  11. human.setState(new ChildState());
  12. System.out.println("====儿童的主要工作=====");
  13. human.work();
  14. System.out.println("n====成年人的主要工作=====");
  15. human.work();
  16. System.out.println("n====老年人的主要工作=====");
  17. human.work();
  18. }
  19. }