beginnerCollections Framework

What is the difference between Collection and Collections in Java?

Collection (singular) is the root interface of the collections hierarchy — List, Set, and Queue all extend it, and it defines the core contract (add, remove, size, iterator). Collections (plural) is a utility class full of static helper methods that operate ON collections — sort(), reverse(), unmodifiableList(), synchronizedList(), and so on.

Ready to master this question?

Generate a complete walkthrough — background, the full answer in plain language, a working code example explained line by line, a real-world scenario, common mistakes, and how this same question gets asked in different ways.

Sign in to generate a response

Next Step

Continue to How do Java enums work internally? What do values(), ordinal(), and valueOf() actually do?← Back to all Core Java questions