2018年8月26日

Java 中的字符串与 []byte 字节数组

摘要: 一、字符串 1.比较 String、HashSet、List 中的 contains 方法 其中, String、List 都使用了 indexOf 方法,本质是遍历,时间效率为 O(n)。而 HashSet 使用了计算 hash值的方式,时间效率为 O(1) 级别。 2.String 中为什么需要 阅读全文

posted @ 2018-08-26 15:55 Lemo_wd 阅读(3347) 评论(0) 推荐(0) 编辑

导航