当我实现 textwatcher 时,发生错误
Syntax error on token "implements", extends expected
我的代码是
import android.text.TextWatcher;
public interface Testing implements TextWatcher{
}
为什么我需要使用扩展?
当我实现 textwatcher 时,发生错误
Syntax error on token "implements", extends expected
我的代码是
import android.text.TextWatcher;
public interface Testing implements TextWatcher{
}
为什么我需要使用扩展?
您没有实现 TextWatcher
- 您正在创建一个扩展它的新接口。
所以你会写:
public interface Testing extends TextWatcher
或者
public class Testing implements TextWatcher
你还没有说出你真正想要做什么,所以我们无法判断你是否应该真正声明一个类,或者只是声明一个扩展的新接口TextWatcher
。
有关声明一个接口以扩展另一个接口的更多详细信息,请参阅JLS 的第 9.1.3 节。