java吧 关注:1,240,205贴子:12,711,844
  • 11回复贴,共1

请教大神,为什么编译说缺少返回语句,不明白啊!

只看楼主收藏回复

interface Inter
{
void method();
}
class Test
{
static Inter function()
{
new Inter()
{
public void method()
{
System.out.println("njarb");
}
}.method();
}
}
class Demo
{
public static void main(String[] args)
{
Test.function();
}
}


1楼2016-03-03 18:35回复
    定义了返回类型的方法必须return相应类型的值


    IP属地:河南来自手机贴吧4楼2016-03-04 18:22
    收起回复