中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中if-else過多怎么解決

發布時間:2020-11-11 14:35:36 來源:億速云 閱讀:333 作者:Leah 欄目:開發技術

Java中if-else過多怎么解決?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

以下面代碼為例,展示幾種替代if else的方法。

String input = "three";

  @Test
  public void testElse() {
    if ("one".equals(input)) {
      System.out.println("one");
    } else if ("two".equals(input)) {
      System.out.println("two");
    } else if ("three".equals(input)) {
      System.out.println("three");
    } else if ("four".equals(input)) {
      System.out.println("four");
    }
  } 

需要引入Spring跟Guava依賴

1.Spring結合策略模式

Spring可以將一組實現了同樣接口的類注入一個List

/***
 * 定義接口。type用來路由具體的Handler實現
 * */
public interface Handler {
  String getType();

  void execute();
}
 /**
   * 將Handler接口的實現類注入一個List
   * */
  @Autowired
  private List<Handler> handlerList;
  @Test
  public void testAutowireList(){
  // 根據類型判斷該由哪個具體實現類處理
     for(Handler handler:handlerList){
       if(input.equals(handler.getType())){
         handler.execute();
       }
     }
  } 

下面是幾種輕量級實現.

2. 反射

通過反射動態調用相應的方法

/***
 *定義每種類型所對應的方法
*/
public class ReflectTest {
  public void methodOne() {
    System.out.println("one");
  }

  public void methodTwo() {
    System.out.println("two");
  }

  public void methodThree() {
    System.out.println("three");
  }

  public void methodFour() {
    System.out.println("four");
  }

}

 /***
   *
   * 通過反射,動態調用方法。采用了Guava的工具類。
   * */
  @Test
  public void testReflect() throws Exception {
    //首字母大寫,根據類型拼接方法
    String methodName = "method" + LOWER_CAMEL.to(UPPER_CAMEL, input);
    Method method = ReflectTest.class.getDeclaredMethod(methodName);
    Invokable<ReflectTest, Object> invokable =
        (Invokable<ReflectTest, Object>) Invokable.from(method);
    invokable.invoke(new ReflectTest());
  } 

3. lambda表達式

實現同上面的反射,結合了Java 8的新特性:lambda表達式

  @Test
  public void testJava8() {
    Map<String, Consumer<ReflectTest>> functionMap = Maps.newHashMap();
    functionMap.put("one", ReflectTest::methodOne);
    functionMap.put("two", ReflectTest::methodTwo);
    functionMap.put("three", ReflectTest::methodThree);
    functionMap.put("four", ReflectTest::methodThree);
    functionMap.get(input).accept(new ReflectTest());
  } 

4. 枚舉

在枚舉里面定義一個抽象方法,每種類型對應各自的具體實現。

/**
 * 定義枚舉類,包含了所有類型
 */
public enum EnumTest {


  ONE("one") {
    @Override
    public void apply() {
      System.out.println("one");
    }
  },
  TWO("two") {
    @Override
    public void apply() {
      System.out.println("two");
    }
  }, THREE("three") {
    @Override
    public void apply() {
      System.out.println("three");
    }
  }, FOUR("four") {
    @Override
    public void apply() {
      System.out.println("four");
    }
  };

  public abstract void apply();

  private String type;

  EnumTest(String type) {
    this.type = type;
  }

  public String getType() {
    return type;
  }

}
 // 枚舉測試
 @Test
  public void testEnum() {
    EnumTest.valueOf(input.toUpperCase()).apply();
  }

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旌德县| 无锡市| 阿巴嘎旗| 乐昌市| 泽州县| 安宁市| 阿城市| 舟曲县| 若尔盖县| 中宁县| 沿河| 上饶市| 嘉义县| 濮阳县| 孝感市| 吉木乃县| 泾源县| 阜新| 定边县| 澜沧| 冷水江市| 呼伦贝尔市| 伊金霍洛旗| 福州市| 抚远县| 塔城市| 中江县| 南城县| 大兴区| 屯门区| 靖安县| 资阳市| 凌源市| 墨竹工卡县| 井冈山市| 连江县| 敦煌市| 扎兰屯市| 改则县| 洛扎县| 三河市|