当前位置: 技术问答>java相关
大侠帮我看看这段程序错在什么地方啊
来源: 互联网 发布时间:2017-04-08
本文导语: static final { fgCurrentFontSize = 12; String fontSizeStr = System.getProperty("rakiura.defaultFontSize"); if(fontSizeStr != null) try { fg...
static final
{
fgCurrentFontSize = 12;
String fontSizeStr = System.getProperty("rakiura.defaultFontSize");
if(fontSizeStr != null)
try
{
fgCurrentFontSize = Integer.parseInt(fontSizeStr);
System.out.println("Setting default font size to " + fgCurrentFontSize + " pt.");
}
catch(NumberFormatException numberformatexception)
{
System.out.println("Failed to set default font size to "" + fontSizeStr + "": wrong number format.");
}
}
编译报错:illegal start of type
{
fgCurrentFontSize = 12;
String fontSizeStr = System.getProperty("rakiura.defaultFontSize");
if(fontSizeStr != null)
try
{
fgCurrentFontSize = Integer.parseInt(fontSizeStr);
System.out.println("Setting default font size to " + fgCurrentFontSize + " pt.");
}
catch(NumberFormatException numberformatexception)
{
System.out.println("Failed to set default font size to "" + fontSizeStr + "": wrong number format.");
}
}
编译报错:illegal start of type
|
final 不能用在这样的地方,你可以使用finally关键字,final通常用在方法或类的修饰,表示不能够再次被继承或重载
|
static final {........}
看看你自己的代码。
把final干掉。
看看你自己的代码。
把final干掉。