它是 Eclipse 中的一个错误,还是为什么我不能用完全限定类型名称 (FQN) 注释参数@NonNull
?
import org.eclipse.jdt.annotation.NonNull;
public class Foo {
// No problem
public void bar(@NonNull String x) {
}
// Error: Type annotations are not allowed on type names used to access
// static members
public void baz(@NonNull java.lang.String x) {
}
}