C++: Const Functions
The Const member functions are used to prevent modifications of class data members within it. Likewise, the const parameters are used to prevent modification of …
A blog for all types of codes, and languages examples and algorithms.
The Const member functions are used to prevent modifications of class data members within it. Likewise, the const parameters are used to prevent modification of …
C++ templates are a powerful mechanism for code reuse, as they enable the programmer to write code that behaves the same for data of any type. Suppose …
Namespace is simply a declarative area. The purpose of a namespace is to localize names of identifiers to avoid name collisions. Elements declared in one …
RTTI stands for Run Time Type Identification. In an inheritance hierarchy, using RTTI we can find the exact type of the object using a pointer …
A Standard Template Library (STL) is a C++ library of container classes, algorithms, and iterators. It provides many of the basic algorithms and data structures.STL …
Room is a persistence library introduced by Google in 2017 I/O Event Used to save data in the local database It’s part of the Android …
Glide and Picasso are the most used image loading libraries in Android applications. Picasso: Picasso downloads the image and stores the full-size image in the …
WorkManager is one of the Android Architecture Components and part of Android Jetpack. WorkManager is for background work that’s deferrable and requires guaranteed execution: Deferrable …
Jetpack DataStore is a data storage solution that allows you to store key-value pairs or typed objects with protocol buffers. DataStore uses Kotlin coroutines and Flow …
ListAdapter was added in Recyclerview library version 27.1.0. It is RecyclerView.Adapter base class for presenting List data in a RecyclerView, including computing diffs between Lists on a background thread. Before …