Posts
All the articles I've posted.
-
Part 3: Encapsulation — Protecting Your Data
This blog makes Java encapsulation super easy to understand. You will learn how to wrap your data and code together inside a single unit to keep it safe from outside mistakes. By using simple examples, you will quickly master how to use "getters" and "setters" to build better, cleaner programs.
-
Part 2: Classes and Objects — Building Your First Java Class
Proper view of Object-Oriented Programming through a series
-
Mastering std::list in Modern C++: From Architecture to Production-Ready Code
This guide explains how std::list works like a chain of nodes linked together in memory. It uses simple steps and clear code examples to show how to add, find, update, and delete items using modern C++ features. Lastly, it shares easy tips on when to use this container and how to avoid mistakes that slow down your program.
-
Part 1: Object-Oriented Programming in Java: A Complete Story for Students
Proper view of Object-Oriented Programming through a series