KKKhelendra Kumar Thakurinpending-topic.hashnode.dev·Sep 15, 2025 · 14 min readCore Java(Part-10)Multithreading Multithreading means doing many things at the same time in a program. 🧠 Think of it like this:You’re watching a YouTube video 🎥 and downloading a file 💾 and typing notes 📝 — all at once. In Java, each task runs in its own thread, a...00
KKKhelendra Kumar Thakurinpending-topic.hashnode.dev·May 8, 2025 · 9 min readCore Java(Part-9)Access modifier For classes, there are only two access modifiers: public and default (no modifier). private is not allowed for top-level classes. Access modifiers control how much access you give to your variables, methods, or classes from other part...00
KKKhelendra Kumar Thakurinpending-topic.hashnode.dev·Apr 28, 2025 · 4 min readCore Java(Part-8)Content .Variable .static .abstract Variable In Java we can create variable in three different way .instance variable .local variable .static variable Instance variable the variable which is declare inside class but not inside the method is known as ...00
KKKhelendra Kumar Thakurinpending-topic.hashnode.dev·Apr 27, 2025 · 5 min readCore Java(Part-7)Content .Typecasting .Abstract .final .this keyword .super keyword Typecasting Forcing one type to behave like other type. You convert one datatype to another. You have a big glass of water,but your small bottle can hold only a little water.So, you p...00
KKKhelendra Kumar Thakurinpending-topic.hashnode.dev·Apr 27, 2025 · 9 min readCore Java(Part-6)Content .OOPs(Object Oriented Programming Language) .Inheritance .Encapsulation .Polymorphism .Abstraction .Constructor What is OOPs ? Object-oriented programming(OOP) is a computer model that organize the code into objects rather the functions. What...00