摘要: public static <K, V> Map<K, V> parseListToMap(Collection<V> list, Function<V, K> mapper) { if (list == null || list.size() == 0) { return null; } Map< 阅读全文
posted @ 2022-09-16 13:40 sowler 阅读(33) 评论(0) 推荐(0)