Java如何优化大量的if else

1、使用策略模式 完全消灭if-else嵌套 设计模式-策略模式 如何干掉 Spring Boot 中大片的 if else? 业务代码中, if else 使用策略模式优化java 2、其余方案 1.使用枚举 public enum Status { NEW(0),RUNNABLE(1),RUNNING(2),BLOCKED(3),DEAD(4); public int sta
相关文章
相关标签/搜索