1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
public class Main { public static void main(String[] args) throws Exception { Flyable bird = FlyableFactory.create(); bird.fly(); } } interface Flyable { public void fly(); } class FlyableFactory { public static Flyable create() { return (new FlyableFactory()).new InnerClass(); } private class InnerClass implements Flyable { @Override public void fly() { System.out.println("Flyableインタフェースのflyメソッドです。"); } } } |
1 |
Flyableインタフェースのflyメソッドです。 |