Skip to content

Coder Articles

A blog for all types of codes, and languages examples and algorithms.

  • Home
  • Jetpack Compose
    • Compose Basics
  • Android
  • Kotlin
  • Interview Questions
  • C/C++/Linux
  • Home
  • Jetpack Compose
    • Compose Basics
  • Android
  • Kotlin
  • Interview Questions
  • C/C++/Linux

Author: WebPublisher

C++: Const Functions
C++

C++: Const Functions

WebPublisherby WebPublisherApril 6, 2024April 6, 2024

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 …

Templates in C++
C++

Templates in C++

WebPublisherby WebPublisherApril 6, 2024April 6, 2024

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 …

Namespaces in C++
C++

Namespaces in C++

WebPublisherby WebPublisherApril 6, 2024

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 …

C++: RTTI | Run Time Type Identification
C++

C++: RTTI | Run Time Type Identification

WebPublisherby WebPublisherApril 3, 2024

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 …

C Standard Template Library STL
C++

C Standard Template Library STL

WebPublisherby WebPublisherApril 3, 2024

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 …

Android / Jetpack

Beginner’s Guide to the Room Persistence Library

WebPublisherby WebPublisherApril 2, 2024

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 …

Image Loading Libraries: Picasso and Glide
Android

Image Loading Libraries: Picasso and Glide

WebPublisherby WebPublisherApril 2, 2024April 2, 2024

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 …

Work Manager in Android
Android / Jetpack

Work Manager in Android

WebPublisherby WebPublisherApril 2, 2024April 2, 2024

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 …

Android Jetpack DataStore: Preferences DataStore
Android / Jetpack / Kotlin

Android Jetpack DataStore: Preferences DataStore

WebPublisherby WebPublisherApril 2, 2024April 2, 2024

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 …

Android / Kotlin

ListAdapter: Extension to RecyclerView.Adapter

WebPublisherby WebPublisherApril 2, 2024

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 …

Posts pagination

Previous 1 2 3 4 5 Next
Copyright © 2025 Coder Articles.