摘要: public static String toString(Object[] a) { if (a == null) return "null"; int iMax = a.length - 1; if (iMax == -1) return "[]"; StringBuilder b = new StringBuilder(); ... 阅读全文
posted @ 2019-05-20 14:09 谷粒-笔记 阅读(115) 评论(0) 推荐(0)