eclipse Syntax error on token "String", strictfp expected
1.情景展示
在eclipse当中,创建枚举类报错信息如下:
Syntax error on token "String", strictfp expected
2.具体分析
在枚举类当中,当定义了属性后,必须为该枚举类定义元素,否则会爆出类似:Syntax error on token "String", strictfp expected的错误。
3.解决方案
这个错误,其实不用管,在我们添加枚举类型后就会自动消失。
4.其它
如何创建枚举类?
在需要添加枚举类的位置,右键--》New--》Other(快捷键:Ctrl+N)
选择Enum-->Next;
为枚举类起个好听的名字;
本文来自博客园,作者:Marydon,转载请注明原文链接:https://www.cnblogs.com/Marydon20170307/p/16020687.html