SUHAS N Hknewknown.hashnode.dev·Aug 23, 2024Collection Framework in JAVAIntroductionThe Collection Interface in Java is like a blueprint for a group of objects. It defines the basic operations that can be performed on a group of elements, such as adding, removing, and checking if an element exists in the collection. Key ...DiscussJava
Anjan BaradwajforfreeCodeCampfreecodecamp.org·Aug 9, 2024How Java HashMaps Work – Internal Mechanics ExplainedA HashMap is one of the most commonly used data structures in Java, and it's known for its efficiency. Data in a HashMap is stored in the form of key-value pairs. In this article, I will introduce you to HashMaps in Java. We will explore the common o...DiscussJava
Akash De Alwiszencode002.hashnode.dev·Jun 30, 2024Java Collections FrameworkThe Java Collections Framework (JCF) is an important part of Java that provides classes and interfaces to work with objects in a collection. Understanding collections is important for all undergraduate students who want to write code that is both eff...DiscussJava
Rishikesh Vajrerishivajre.hashnode.dev·Jun 1, 2024🚀Doctor Strange's Guide to Collections in Java🧙♂️✨Greetings, fellow coders! 🚀 Today, we're diving into the mystical realm of Java Collections Framework, guided by none other than the Sorcerer Supreme himself, Doctor Strange! 🌀 Let's explore List, Set, and Map through the enchanting world of spell...DiscussJava
Paras kaushikparaskaushik.hashnode.dev·May 31, 2024Collections in JavaA collection allows a group of objects to be treated as a single unit. The Java Collections Framework provides a set of standard utility classes for managing various kinds of collections. The core framework is provided in the java.util package and co...DiscussJAVAJava
hoangkimhoangkim.hashnode.dev·May 22, 2024Collections Framework trong JavaDưới đây là dàn ý chi tiết cho chuỗi bài viết về Collections Framework trong Java, bao gồm 20 bài: Bài 1: Giới thiệu về Collections Framework Tổng quan về Collections Framework. Lợi ích của việc sử dụng Collections Framework. Các thành phần chính ...DiscussCollection Framework
Romman Sabbirrommansabbir.com·Apr 20, 2024Kotlin's Collections in a Nutshell[Background Image by JOHN TOWNER] Kotlin, known for its conciseness, expressiveness, and interoperability with Java, provides powerful tools for working with collections. What is Collections in Kotlin? The Collections class in Kotlin is like a toolbo...Discuss·136 readsKotlinKotlin
Bharat Kumarbharat2044.hashnode.dev·Apr 3, 2024What is ArrayList in java and how to create and all predefined methods and different ways to print ArrayList element?In Java, ArrayList is a resizable-array implementation of the List interface. It's part of the java.util package. Unlike arrays, ArrayList can dynamically grow and shrink in size as elements are added or removed. Here are some key characteristics of ...Discuss·1 likeJava
Codec1codec1.hashnode.dev·Mar 9, 2024Mastering Java List Methods: A Beginner's GuideIntroduction: Java Lists are versatile data structures that allow us to store and manipulate collections of elements. They offer a wide range of methods to add, remove, access, and manipulate elements within the list. In this beginner-friendly guide,...DiscussJava-Fundamental: Beginner's to AdvanceJava
Neelesh Bhargavneeleshbhargav.hashnode.dev·Feb 6, 2024Traversing a ConcurrentHashMap using Iteratorimport java.util.*; import java.util.concurrent.*; public class TraversingConcurrentHashMap { public static void main(String[] args) { // create an instance of ConcurrentHashMap ConcurrentHashMap<Integer, String> chmap ...DiscussJava