引用另一个类中的枚举对象

时间:2015-05-31 21:59:44

标签: java enums reference syntax-error

我正在尝试在另一个类中使用枚举对象,但无法弄清楚我做错了什么。

以下是我的第一个类中尝试引用第二个类的代码行。

Model model = new Model();
Model.Outcome outcome = new getgameOutcome(uChoice,cChoice);

这是我试图在“模型”类中引用的实际对象。

public enum Outcome{
    WIN,LOSS,TIE
}

public Outcome getgameOutcome(String uChoice, String cChoice){

然后继续其余的。

1 个答案:

答案 0 :(得分:1)

您没有创建新实例,只是分配方法的返回值。因此,您不需要new运算符:

Model.Outcome outcome = getgameOutcome(uChoice,cChoice);