我从 Eclipse 收到警告,我知道我可以通过抑制警告将其删除,但我更愿意了解是什么让它可能为空。
包信息.java
@ParametersAreNonnullByDefault
package test;
import javax.annotation.ParametersAreNonnullByDefault;
测试.java
package test;
public class Test {
public static void main( final String[ ] args ) {
System.out.println( new Test( "a" ).getS( ) );
}
private final String s;
public Test( final String s ) {
this.s = s;
}
public String getS( ) {
return this.s;//Null type safety: The expression of type String needs unchecked conversion to conform to '@Nonnull String'
}
}
我不明白为什么我会收到此警告...
PS:
public Test( @Nonnull final String s ) {
-> nullness 注释是多余的,具有适用于该位置的默认值
@Nonnull private final String s;
-> 没有任何变化