Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024Generic COLLECTIONS part 1This backpack is special because it can hold all sorts of things, like toys, books, or even snacks! You can put things in, take them out, and organize them in different ways. In coding we call it a Collection. Let's understand them one by one. List<T...hash set
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Collections General OverviewThings become better to work when everything is organized. Same applicable while coding, we want to keep data organized. We can achieve this using Collections C# provides a rich set of collection classes to store and manage groups of objects efficien...non generic
Code Greencodegreen.hashnode.dev·Sep 23, 2024What are the main interfaces in the Java Collections Framework?The Java Collections Framework (JCF) provides a set of interfaces and classes that facilitate the storage and manipulation of groups of objects. The main interfaces in the JCF include: 1. Collection The root interface in the collection hierarchy. It ...Collections
Code Greencodegreen.hashnode.dev·Sep 21, 2024Why Set Doesn't Allow Duplicates in JavaIn Java, a Set is a collection that does not allow duplicate elements. This behavior is enforced by the underlying implementations of the Set interface, such as HashSet, TreeSet, and LinkedHashSet. The main reason Sets do not allow duplicates is due ...Backend Developer Interview QuestionsCollections
QazneticforQazneticqaznetic.hashnode.dev·Jul 22, 2024Mengenal Collections dalam Dart: List, Set, dan MapDalam pengembangan aplikasi, sering kali kita perlu mengelola sekumpulan data yang kompleks. Dart menyediakan berbagai struktur data yang dikenal sebagai collections untuk menyimpan dan mengelola banyak data secara efisien. Artikel ini akan memberika...Dart FundamentalsDart
Mritunjay Kumarcodecomponents.hashnode.dev·Jun 10, 2024Learn C#.NET Advancec LevelIf you do not understande what is .NET ,what is C#, Compilation of C#, execution of C#, Data types,Operatord, type casting, Strings, Conditional statments, Controll statments, Loop's, Array's and Method's. Then first understand this then come hear, h...3 likes·427 readsadvance C#
Romman Sabbirrommansabbir.com·Jan 18, 2024Compare Objects in KotlinWhen working with Kotlin in Software development, comparing objects becomes a common task. Whether we want to check if two objects contain the same data or if they reference the exact same instance, Kotlin provides several approaches to make this com...1.4K readsKotlinKotlin
Asfaq Leeonleeonscoding.hashnode.dev·Dec 4, 2023Java Collection framework - Introduction and general overviewHello everyone. Today I'm going to talk about the Java Collection framework. In this article I'm not going to deep. This is an introductory. Let's get started. So, what is the Java Collection? What is Collection Collection is a single entity which re...1 like·36 readsJava
Ekaterine (Catherine)ekaterine-mitagvaria.hashnode.dev·Oct 6, 2023JavaScript Collections GuideIn JavaScript collection is a collection, a group of data that can consist of various types of data that have different behaviors. The collection of the data can have various data types or this collection itself can be a specific data structure. If y...87 readsJavaScript
Josafá Marengoblog.josafa.com.br·Sep 13, 2023Java Collections: Saiba quando usar Set, Map, List ou Queue.O aproveitamento das interfaces oferecidas pelo Framework de Coleções impede que o desenvolvedor gaste energia na criação de suas próprias estruturas, permitindo-lhe direcionar seus esforços para áreas cruciais do desenvolvimento. Essas estruturas de...Java