package cn.lihu.jh.framework.common.util.collection; import cn.hutool.core.collection.CollUtil; import java.util.Set; /** * Set 工具类 * * @author 芋道源码 */ public class SetUtils { @SafeVarargs public static Set asSet(T... objs) { return CollUtil.newHashSet(objs); } }