在控制台输出”HelloWorld” interface Inter { void show(); } class Outer { //补齐代码 } public class OuterDemo { public static void main(String[] args) { Outer.method().show(); } }
时间: 2023-05-13 15:05:04 浏览: 121
以下是代码:
public class Outer {
public static Inter method() {
return new Inter() {
public void show() {
System.out.println("HelloWorld");
}
};
}
}
在控制台输出的结果是:HelloWorld。
相关问题
在控制台输出”HelloWorld” 自己书写,不要用idea自动生成
要实现在控制台输出 "HelloWorld",可以按照如下代码进行编写:
```java
interface Inter {
void show();
}
class Outer {
public static Inter method() {
return new Inter() {
@Override
public void show() {
System.out.println("HelloWorld");
}
};
}
}
public class OuterDemo {
public static void main(String[] args) {
Outer.method().show();
}
}
```
这段代码通过定义一个接口 `Inter` 和一个静态方法 `method()` 来返回实现了该接口的对象。在 `main` 方法中调用 `Outer.method().show();` 即可输出 "HelloWorld" 到控制台。
阅读全文