20

如何将以下代码转换为 switch 语句?

String x = "user input";

if (x.contains("A")) {
    //condition A;
} else if (x.contains("B")) {
    //condition B;
} else if(x.contains("C")) {
    //condition C;
} else {
    //condition D;
}
4

7 回答 7

19

有一种方法,但不使用contains. 你需要一个正则表达式。

final Matcher m = Pattern.compile("[ABCD]").matcher("aoeuaAaoe");
if (m.find())
  switch (m.group().charAt(0)) {
  case 'A': break;
  case 'B': break;
  }
于 2012-07-19T09:53:24.207 回答
7

你不能switch在这样的条件下x.contains()。Java 7 支持switch字符串,但不像你想要的那样。使用if

于 2012-07-19T09:50:15.500 回答
5

java中switch语句中不允许条件匹配。

您可以在这里做的是创建一个字符串文字的枚举,并使用该枚举创建一个帮助函数,该函数返回匹配的枚举文字。使用返回的枚举值,您可以轻松应用switch case

例如:

public enum Tags{
   A("a"),
   B("b"),
   C("c"),
   D("d");

   private String tag;

   private Tags(String tag)
   {
      this.tag=tag;
   }

   public String getTag(){
      return this.tag;
   }

   public static Tags ifContains(String line){
       for(Tags enumValue:values()){
         if(line.contains(enumValue)){
           return enumValue;
         }
       }
       return null;
   }

}

在您的 java 匹配类中,执行以下操作:

Tags matchedValue=Tags.ifContains("A");
if(matchedValue!=null){
    switch(matchedValue){
       case A:
         break;
       etc...
}
于 2017-08-11T07:15:28.003 回答
4
@Test
public void test_try() {
    String x = "userInputA"; // -- test for condition A
    String[] keys = {"A", "B", "C", "D"};
    String[] values = {"conditionA", "conditionB", "conditionC", "conditionD"};

    String match = "default";
    for (int i = 0; i < keys.length; i++) {
        if (x.contains(keys[i])) {
            match = values[i];
            break;
        }
    }

    switch (match) {
        case "conditionA":
            System.out.println("some code for A");
            break;
        case "conditionB":
            System.out.println("some code for B");
            break;
        case "conditionC":
            System.out.println("some code for C");
            break;
        case "conditionD":
            System.out.println("some code for D");
            break;
        default:
            System.out.println("some code for default");
    }
}

输出:

some code for A
于 2017-07-27T05:29:01.497 回答
3

不,您不能使用switchwith 条件

JAVA 7 允许Stringswitch case

为什么我不能打开字符串?

但是条件不能和switch一起使用

于 2012-07-19T09:53:27.120 回答
2

你只能比较switch中的整个单词。对于您的场景,最好使用 if

于 2012-07-19T09:53:21.733 回答
1

还有HashMap:

String SomeString = "gtgtdddgtgtg";

Map<String, Integer> items = new HashMap<>();
items.put("aaa", 0);
items.put("bbb", 1);
items.put("ccc", 2);
items.put("ddd", 2);

for (Map.Entry<String, Integer> item : items.entrySet()) {
    if (SomeString.contains(item.getKey())) {
        switch (item.getValue()) {
            case 0:
                System.out.println("do aaa");
                break;
            case 1:
                System.out.println("do bbb");
                break;
            case 2:
                System.out.println("do ccc&ddd");
                break;
        }
        break;
    }
}
于 2020-07-23T16:27:29.453 回答