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

软件工程

开发平台:

Java

  1. package com.company.section1;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 古代女性的总称
  6.  */
  7. public class Women implements IWomen{
  8. /*
  9.  * 通过一个int类型的参数来描述妇女的个人状况
  10.  * 1---未出嫁
  11.  * 2---出嫁
  12.  * 3---夫死
  13.  */
  14. private int type=0;  
  15. //妇女的请示
  16. private String request = "";
  17. //构造函数传递过来请求
  18. public Women(int _type,String _request){
  19. this.type = _type;
  20. this.request = _request;
  21. }
  22. //获得自己的状况
  23. public int getType(){
  24. return this.type;
  25. }
  26. //获得妇女的请求
  27. public String getRequest(){
  28. return this.request;
  29. }
  30. }