13

我正在用 Java 制作(我自己的)轮盘赌,玩家可以下注的一种类型是选择将要滚动的颜色。(偶数为黑色,奇数为红色)。有没有办法可以使用 switch 语句将字符串与枚举进行比较?

private enum colors{red, black};
private String colorGuess;
private boolean colorVerify = false;
public void getColorGuess(){
do{
Scanner in = new Scanner(System.in);
colorGuess = in.nextLine();
switch(colors){
case red:
    colorVerify = true;
    break;
case black:
    colorVerify = true;
    break;
default:
    System.out.println("Invalid color selection!");
    break;
}while(colorVerify = false);

这就是我想要得到的,但它不允许我在 switch 语句中使用枚举“颜色”。

4

2 回答 2

25

您必须有一个枚举类型(其成员)的实例,您可以在该实例上进行切换。您正在尝试打开 Enum 类本身,这是一个毫无意义的构造。所以你可能需要

colors col = colors.valueOf(colorGuess);
switch (col) ...

顺便说一句,名称应该是Colors,而不是colors尊重非常重要且非可选的 Java 命名约定。

于 2013-11-07T14:00:53.127 回答
6

您可以使用 . 从字符串中获取枚举Enum.valueOf()。请注意,其他答案没有提到如果传递了一个不是枚举有效成员的字符串,Enum.valueOf()则会抛出一个字符串。IllegalArgumentException

请务必正确格式化和缩进您的代码,这有助于我们(和您!)阅读并了解发生了什么:

// note the capitalization, and the singular 'Color'
private enum Color {RED, BLACK}; 

// At least with the code provided, you don't need colorGuess or colorVerify to be
// instance variables, they can be local to the method.  Limiting the amount of
// time a variable lives for (its scope) is critical for quality, maintainable code

public Color getColorGuess() {
  Scanner in = new Scanner(System.in); // this should be outside the while loop
  while(in.hasNextLine()) {
    // .toUpperCase() lets you type "red" or "RED" and still match
    String line = in.nextLine().toUpperCase();
    try {
      // Enum.valueOf() throws an exception if the input is not valid
      Color guess = Color.valueOf(line);

      switch(guess) {
        case RED:
          return guess; // return, rather than break, to exit the method
        case BLACK:
          return guess;
        // As long as your switch statement covers all cases in your enum, you
        // don't need a default: case, you'll never reach it
      }
    } catch (IllegalArgumentException e) {
      System.out.println("Invalid color selection!");
    }
  }
}

请注意,我们现在guess在这两种情况下都返回,这有点多余。至少对于您提供的示例代码,您实际上根本不需要跟踪colorVerify,因为该方法将永远循环,直到输入有效的颜色。您可以将我的方法中的整个switch语句替换return guess;为只要Color.valueOf()返回值就知道这是一个有效的猜测。

换句话说,您可以将代码清理到:

public static Color getColorGuess() {
  try (Scanner in = new Scanner(System.in)) {
    while(in.hasNextLine()) {
      try {
        return Color.valueOf(in.nextLine().toUpperCase());
      } catch (IllegalArgumentException e) {
        System.out.println("Invalid color selection!");
      }
    }
  }
}

请注意,该方法是staticnow,并且在您完成后使用try-with-resources块来关闭它。Scanner

于 2013-11-07T14:21:30.167 回答