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

软件工程

开发平台:

Java

  1. package com.company.section2;
  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. //为了显示好看点,我在这里做了点处理
  21. switch(this.type){
  22. case 1:
  23. this.request = "女儿的请求是:" + _request;
  24. break;
  25. case 2:
  26. this.request = "妻子的请求是:" + _request;
  27. break;
  28. case 3:
  29. this.request = "母亲的请求是:" + _request;
  30. }
  31. }
  32. //获得自己的状况
  33. public int getType(){
  34. return this.type;
  35. }
  36. //获得妇女的请求
  37. public String getRequest(){
  38. return this.request;
  39. }
  40. }