java吧 关注:1,240,357贴子:12,711,947
  • 0回复贴,共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回复