Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数组和集合是所有java程序员都使用的两个基本api类。这两个类都是在 Java 1.2 中添加的
查看 Arrays 类,有27 个重载的二进制搜索方法,它没有使用泛型,因为集合被更新为使用泛型。其中 Collections 类有 2 个重载的二进制搜索方法。
有什么理由这样做还是我错过了什么?
因为 Java 泛型只能在引用类型上进行参数化。 int,long等是原始类型。
int
long