Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / collections

Collections

collections

Great Reads

by Aydin Homay
In this article, I tried to show a real benchmark based on presser test method, for a Big Data collection deals on C++, C#, and VB.NET.
by Maciej Los
If you want to know the way you can serialize and deserialize custom class collection, this tip is for you.
by rtybase
There is one ambiguous moment in the Java documentation of the compute() method from the ConcurrentHashMap class.
by honey the codewitch
A circular buffer implementing IList

Latest Articles

by Aydin Homay
In this article, I tried to show a real benchmark based on presser test method, for a Big Data collection deals on C++, C#, and VB.NET.
by Maciej Los
If you want to know the way you can serialize and deserialize custom class collection, this tip is for you.
by rtybase
There is one ambiguous moment in the Java documentation of the compute() method from the ConcurrentHashMap class.
by honey the codewitch
A circular buffer implementing IList

All Articles

Sort by Score

collections 

by rtybase
There is one ambiguous moment in the Java documentation of the compute() method from the ConcurrentHashMap class.
by rtybase
An use case for ConcurrentHashMap
by Trần_Tuấn_Anh
Creating a custom Comparator function in Java allows you to define the rules for sorting or comparing objects based on specific criteria. This article will guide you through the steps of writing a custom Comparator
by Dev Leader
This article is follow up content to previous articles I've written about iterators and collections, but the benchmark results were NOT what I expected!
by Sander Rossel
A simple introduction to set theory
by Sander Rossel
Using Venn diagrams to visualize sets.
by Sander Rossel
An introduction to algebra and algebra of sets.
by Trần_Tuấn_Anh
Iterators are an essential part of collections in Java, enabling you to traverse through data structures. Two primary types of iterators are fail-safe and fail-fast. Understanding their differences is crucial for writing robust code.
by Trần_Tuấn_Anh
Lambda functions are a powerful feature introduced in Java 8 that revolutionize how you write and manage code. They allow for more concise and readable code, especially when dealing with functional interfaces.
by Dev Leader
In this article, I’d like to go over a couple of different approaches for an API and then explain why the yield keyword might be something you consider next time around.