本帖最后由 华行天下 于 2013-8-27 13:38 编辑
interface Inter{
void method();
}
class Text{
static Inter function(){
return new Inter(){
public void method(){
System.out.println("run");
}
}
}
}
public class niming {
public static void main(String[] args) {
// TODO Auto-generated method stub
Text.function().method();
}
}
用eclipse运行的总是有个错误,
|
|