Interface 練習題

1.使用此程式列印出Hello World

package tw.com.lccnet.k01;

public class PrintInterface {

    public static void main(String[] args) {
        Outer.method().show();
    }
}


interface Inter{
    void show();
}

class Outer{
    //依需求補齊程式碼
}

results matching ""

    No results matching ""