1. 程式人生 > >在Eclipse裡靜態匯入

在Eclipse裡靜態匯入

在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(“阿里巴巴測試公司”, “阿里巴巴測試公司”);