判断long类型是否为空的方法

public static boolean isEmpty(Object str) {
        return (str == null || "".equals(str));
}

 

你可能感兴趣的