根据
documentation of
SafeVarargs
,@ SafeVarargs注释只能应用于静态或最终的构造函数或变量arity方法.这是
I have read,用于消除注释继承问题;也就是说,只有在无法覆盖方法时才允许对方法进行注释.显然,构造函数,静态方法和最终方法不能被覆盖.但是,最终类中的私有方法或方法都不能.
Someone has complained关于无法指定@SafeVarargs私有方法,但是
neither of these issues has been addressed.一般来说,no one really seems to care.我错过了什么?我抱怨没有任何实际应用的东西吗?要么… ?
解决方法
这计划在Java 9中修复;见
http://openjdk.java.net/jeps/213.