Getter和@Nonnull

时间:2012-07-12 23:39:28

标签: java null annotations non-nullable

我收到了eclipse的警告,我知道我可以通过抑制警告将其删除,但我更愿意理解是什么原因导致它可能为空。

package-info.java

@ParametersAreNonnullByDefault
package test;

import javax.annotation.ParametersAreNonnullByDefault;

test.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; - >什么都没有改变

1 个答案:

答案 0 :(得分:6)

问题是@Nonnull注释对字段没有影响。它仅支持:

  • 方法参数
  • 方法返回值
  • 局部变量(在代码块中)

See eclipse Documentation

非常明显 - 因为字段上没有检查Nonnull - 编译器不知道Test.s是Nonnull并且抱怨它。

显而易见的解决方案确实是在字段访问(或方法,如果它是一个简单的getter)上添加@SuppressWarnings(“null”):

public String getS() {
    @SuppressWarnings("null")
    @Nonnull String s = this.s;
    return s;
}