Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
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.
With the release of java9 and the convenience factory methods this is possible in a cleaner way as:
Set set2set = Set.of("a", "b", "c");
Set set2 = Set.of("a", "b", "c");
With the release of java9 and the convenience factory methods this is possible in a cleaner way:
Set set = Set.of("a", "b", "c");