Mihai Popescujavainterviewprep.hashnode.dev·Dec 9, 2024Java Threads: Basics and Modern Usage1. Basics of Threads A thread in Java is a lightweight process that enables concurrent execution of code. It allows multiple tasks to run in parallel within a single application. Key Concepts: Thread Lifecycle: New → Runnable → Running → Terminated ...Java
André Felipe Costa Bentobentodev.hashnode.dev·May 27, 2024Understanding Threads in JavaIntroduction Threads are a fundamental concept in Java programming, enabling concurrent execution of tasks. Understanding threads is crucial for creating efficient and responsive applications. This post will delve into the theoretical aspects of thre...39 readsJava
Sajal Raj Gautamblog.sajalrg.com·Jan 30, 2024Looper, Handler in Android Part 3 - HandlerThis article is the third in a series on Looper and Handler in Android. To fully understand the concepts discussed here, it's assumed that you have read or are already familiar with the concepts covered in part1 and part2. If not, I recommend visitin...155 readsMultiThreading In AndroidAndroid
Sneha Tarnekarsnehatarnekar.hashnode.dev·May 15, 2023Threading: Understanding the Lifecycle and States of ThreadsEveryone did multitasking in their life knowingly or unknowingly. Whether it's writing code while enjoying music or watching a video and downloading it at the same time. Here the multithreading works the same as in Java. When two or more program run...10 likes·80 readsThreading