Collections in Java consiste solo di metodi statici, come dichiarato nelle specifiche
This class consists exclusively of static methods that operate on or return collections. It contains polymorphic algorithms that operate on collections, "wrappers", which return a new collection backed by a specified collection, and a few other odds and ends.
La classe ha un costruttore privato, tuttavia non è contrassegnato come final
. Non ci sono benefici di rendimento se la classe sarebbe definitiva in sé? Qual è la ragione di questo?