Questions
- What methods would a class that implements the
java.lang.CharSequenceinterface have to implement? - What is wrong with the following interface?
public interface SomethingIsWrong {
void aMethod(int aValue){
System.out.println("Hi Mom");
}
} - Fix the interface in question 2.
- Is the following interface valid?
public interface Marker {
}