在Eclipse里静态导入

六眼飞鱼酱① 提交于 2019-12-06 18:46:36

在Eclipse里静态导入

在Eclipse里配置静态导入

常用的静态导入方法如下:

  • com.google.common.base.Preconditions
  • com.google.common.base.Predicates
  • com.google.common.collect.Iterables
  • com.google.common.collect.Lists
  • com.google.common.collect.Maps
  • com.google.common.collect.Sets
  • org.apache.commons.lang.StringUtils
  • org.junit.Assert

静态导入配置后,写代码只需要

checkNotNull(sourceData);

isBlank(a);

assertEquals(“阿里巴巴测试公司”, “阿里巴巴测试公司”);

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!