当前位置:   article > 正文

多个if/else语句的替代编码方式_c++ 多个if else 范围替换

c++ 多个if else 范围替换

概述

在写代码时,有时需要通过不同的type值,进行区分,针对不同的type,进行不同的操作。
如果以if/else的代码方式,则会显得很不美观,如下:

if(type.equals("type1")){
	//todo
}
else if(type.equals("type2")){
	//todo
}
else if(type.equals("type3")){
	//todo
}
...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

针对这种情况,很明显,对于type1type2typeN,比较好的方式是首先将type抽象为枚举类(不管是字符串还是其他类型的值),然后再枚举类中编写相应的方法,通过循环遍历的方式,来区分当前是哪一种type。

直接贴代码如下:下方的of()方法用来遍历并返回对应的枚举类型实例,避免了一个个if-else的判断语句。isOf()方法用来判断输入type值是否对应于枚举类中的某个值。getTypeNo()用来获取TypeEnum枚举类对应的值。

public enum TypeEnum {
    Null(0), Type1(1), Type2(2),
    Type3(3), Type4(4),
    ;

    private Integer typeNo;

    TypeEnum(Integer typeNo){
        this.typeNo=typeNo;
    }

    /**
     * 此方法用于返回typeNo值所对应的枚举类实例
     * @param typeNo
     * @return
     */
    public static TypeEnum of(Integer typeNo){
        if(typeNo==null){
            return Null;
        }
        for(TypeEnum item : TypeEnum.values()){
            if(item.typeNo.equals(typeNo)){
                return item;
            }
        }
        return Null;
    }

    /**
     * 该方法用于判断typeNo值是否对应哪一个枚举值,对应则返回true,否则为false
     * @param typeNo
     * @return
     */
    public static TypeEnum isOf(Integer typeNo){
        if(typeNo==null){
            return false;
        }
        for(TypeEnum item : TypeEnum.values()){
            if(item.typeNo.equals(typeNo)){
                return true;
            }
        }
        return false;
    }
    
    public Integer getTypeNo(){
        return typeNo;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

即用枚举类的方式替代多个if-else/switch-case语句块!使写出的代码更加简洁美观!

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

闽ICP备14008679号