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

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Boy {
  7. //男孩的状态
  8. private String state = "";
  9. //任何女孩子后状态肯定改变,比如心情、手中的花朵等等
  10. public void changeState(){
  11. this.state = "心情可能很不好";
  12. }
  13. public String getState() {
  14. return state;
  15. }
  16. public void setState(String state) {
  17. this.state = state;
  18. }
  19. //保留一个备份
  20. public Memento createMemento(){
  21. return new Memento(this.state);
  22. }
  23. //恢复一个备份
  24. public void restoreMemento(Memento _memento){
  25. this.setState(_memento.getState());
  26. }
  27. }