标签: java android
我有一个具有@CallSuper注释的方法,它强制子类调用super.methodName()。子类重写此方法并尝试抛出UnsupportedOperationException,但编译器仍抱怨我没有调用super方法。有一个简单的方法吗?
@CallSuper
super.methodName()
UnsupportedOperationException
答案 0 :(得分:1)
我发现我可以用@SuppressLint("MissingSuperCall")来抑制警告。
@SuppressLint("MissingSuperCall")