摘要: dest是String类型 错误的使用 if (dest == null || "".equals(dest)) { ... } 正确的使用 if (dest == null || dest.length() == 0) { ... } 阅读全文
posted @ 2020-12-01 11:21 大锅豁皮灸 阅读(34) 评论(0) 推荐(0)