首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

这段代码fun()显示没定义 该如何定义呀?

2013-10-15 
这段代码fun()显示没定义 该怎么定义呀???public class try3{public void test(){try{ fun()System.out.p

这段代码fun()显示没定义 该怎么定义呀???


public class try3{
public void test(){
try{
 fun();
System.out.print("情况1");
}
catch(ArrayIndexOutOfBoundsException e)
{
System.out.print("情况2");
}
catch(Exception e)
{
System.out.print("情况3");
}
finally
{
System.out.print("finally");
}
}

}

Eclipse
[解决办法]
写个简单的方法
public void fun(){
System.out.println("hello");
}
应该就ok

热点排行