Eclipse 枚举类报错
Posted fengyu后
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse 枚举类报错相关的知识,希望对你有一定的参考价值。
当你写一个枚举类时,如果没有在枚举类的第一行写有哪些枚举值,那么就会出现编译报错:Syntax error on token "String", strictfp expected
比如:
public enum Season2 implements TimeInfo {
private final String name; //此处会报错:Syntax error on token "String", strictfp expected
private final String desc;
private Season2(String name, String desc) {
this.name = name;
this.desc = desc;
}
······
}
报错的原因就是没有在第一行写明你有哪些枚举值,修改如下:
public enum Season2 implements TimeInfo {
SPRING,SUMMER,FALL,WINTER; //列出你要定义的枚举值,此时编译通过
private final String name;
private final String desc;
private Season2(String name, String desc) {
this.name = name;
this.desc = desc;
}
······
}
以上是关于Eclipse 枚举类报错的主要内容,如果未能解决你的问题,请参考以下文章