问题与练习:interface

Questions

public interface SomethingIsWrong {
    void aMethod(int aValue){
        System.out.println("Hi Mom");
    }
}
public interface Marker {
}

Exercises

检查一下你的答案。

首页