当前位置:   article > 正文

Java switch 使用枚举类_java switch case不能用枚举类

java switch case不能用枚举类

开发过程中为了代码的可阅读性和可维护性,很多类型字段往往会习惯使用枚举去定义,可是在一些判断里面想用switch去代替if else 就会出现以下问题

  1. public enum SexType {
  2. MAN(1, "男"),
  3. GIRL(2, "女"),
  4. ;
  5. private int type;
  6. private String work;
  7. SexType(int type, String work) {
  8. this.type = type;
  9. this.work = work;
  10. }
  11. public int getType() {
  12. return type;
  13. }
  14. public void setType(int type) {
  15. this.type = type;
  16. }
  17. public String getWork() {
  18. return work;
  19. }
  20. public void setWork(String work) {
  21. this.work = work;
  22. }
  23. }

如果直接使用会因为case后跟的是常量表达式而导致报错

解决办法:知道枚举的值,可先获取枚举值对应的枚举,再使用switch

1、修改枚举类,新增一个静态方法,getByType()

  1. package com.jaryn.emun;
  2. public enum SexType {
  3. MAN(1, "男"),
  4. GIRL(2, "女"),
  5. OTHER(0, "未知"),
  6. ;
  7. private int type;
  8. private String work;
  9. SexType(int type, String work) {
  10. this.type = type;
  11. this.work = work;
  12. }
  13. public int getType() {
  14. return type;
  15. }
  16. public void setType(int type) {
  17. this.type = type;
  18. }
  19. public String getWork() {
  20. return work;
  21. }
  22. public void setWork(String work) {
  23. this.work = work;
  24. }
  25. public static SexType getByType(int type){
  26. for (SexType constants : values()) {
  27. if (constants.getType() == type) {
  28. return constants;
  29. }
  30. }
  31. return OTHER;
  32. }
  33. }

2、修改方法逻辑

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/729069
推荐阅读
相关标签
  

闽ICP备14008679号