摘要:
public static List<String> removeDuplicate(List<String> list) { HashSet<String> h = new HashSet<String>(list); list.clear(); list.addAll(h); return li 阅读全文
摘要:
1 java.lang.ArithmeticException: / by zero 原因:当我们定义的被除数为整型时(short、int、long)会抛出此异常, 被除数为整型时不可为零。解决办法:检查整型的被除数。 2 java.lang.NumberFormatException at jav 阅读全文