Most visited

Recently visited

CheckResult

public abstract @interface CheckResult
implements Annotation

android.support.annotation.CheckResult


表示注释的方法返回的结果通常是要忽略的错误。 这通常用于没有副作用的方法,因此在不实际查看结果的情况下调用它通常意味着开发人员误解了该方法的作用。

例:

public @CheckResult String trim(String s) { return s.trim(); }
  ...
  s.trim(); // this is probably an error
  s = s.trim(); // ok
 

Summary

Inherited methods

From interface java.lang.annotation.Annotation

Hooray!