标签:static code using nta div 实现 repr 集合 between
/** * Returns a string containing the string representation of each of {@code parts}, using the * previously configured separator between each. * @param iterables 可遍历集合 * @param separator 分隔符 * @return */ public static String convertToString(Iterable<?> iterables, String separator) { if(iterables == null) { return StringUtils.EMPTY; } return Joiner.on(separator).skipNulls().join(iterables); }
标签:static code using nta div 实现 repr 集合 between
原文地址:https://www.cnblogs.com/dand/p/10682430.html