gpt4 book ai didi

java - 如何访问内部枚举类覆盖的方法?

转载 作者:行者123 更新时间:2023-12-01 17:07:08 25 4
gpt4 key购买 nike

main 访问 getPrice() 方法需要什么代码?

我可以使用内置的values() 访问公共(public)枚举类型;功能

但不知道如何打印价格,谢谢

public enum Drink {
GUINNESS(Type.STOUT),
COLA(Type.COLA);

private Type type;

private Drink(Type type) {
this.type = type;
}

private enum Type {
STOUT {
@Override
public double getPrice() {
return 4.0;
}
},
COLA {
@Override
public double getPrice() {
return 2.0;
}
};

public abstract double getPrice();
}

}

最佳答案

您必须在 Drink 枚举中添加 price 的 getter。

public double getPrice() {
return type.getPrice();
}

然后你可以这样做:

Drink cola = Drink.COLA;
double price = cola.getPrice();

关于java - 如何访问内部枚举类覆盖的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25096898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com