Posted inBasics Object-Oriented Analysis And Design — Design Principles (Part 5) Posted by admin August 13, 2021 Design Principles Programming is full of rules. When you learn a language, you spend…
Posted inBasics Types of Messages Posted by admin August 13, 2021 Synchronous Message It’s a message where the caller object has to wait for the receiving…
Posted inBasics Object-Oriented Analysis And Design — Interaction Models (Part 4) Posted by admin August 13, 2021 Interaction models shows the interaction between the components of a system, or between the…
Posted inBasics Abstract Class Posted by admin August 13, 2021 An abstract class is a class that can’t be instantiated; can’t create objects from it.…
Posted inBasics Types of Relationships Posted by admin August 13, 2021 Inheritance When we say, “a student IS-A person”, “an employee IS-A person” “a car IS-A…
Posted inBasics Constructor and Destructor Posted by admin August 13, 2021 Whenever you create an object, you need to construct that object, meaning you assign all…
Posted inBasics Object-Oriented Analysis And Design — Structural Models (Part 3) Posted by admin August 13, 2021 Structural models of software display the organization of a system in terms of the components…
Posted inBasics Object-Oriented Analysis And Design — Conceptual Model (Part 2) Posted by admin August 13, 2021 Conceptual Model Once we’ve some use cases or user stories, the next thing we can…
Posted inBasics Object-Oriented Analysis And Design — Introduction (Part 1) Posted by admin August 13, 2021 The Concept Of Object-Orientation Object-orientation is what’s referred to as a programming paradigm. It’s not…
Posted inBasics Designing Real-World Systems Posted by admin August 13, 2021 This last section is all about examples of real world problems, and what solutions we…