使用“import static”有什么好处?
解决方法
一般来说,您应该使用静态导入
very sparingly.
他们非常有意义的几个地方之一就是在你的单元测试中:
import static junit.framework.Assert.*;
静态导入被添加到Java中以阻止程序员实现Constant Interface Antipattern.
他们非常有意义的几个地方之一就是在你的单元测试中:
import static junit.framework.Assert.*;
静态导入被添加到Java中以阻止程序员实现Constant Interface Antipattern.