Top "Ooad" questions

Object Oriented Analysis and Design - use this tag for questions related to Object Oriented programming.

Difference between Sequence Diagram (SD) and a System Sequence Diagram (SSD)?

I'm working on a project for a grad class and still having trouble wrapping my head around them. What is …

uml modeling ooad
C++ : Association, Aggregation and Composition

I'm beginning to study OOAD and I'm having difficulty finding a C++ code example that'd illustrate how Association, Aggregation and …

c++ oop associations aggregation ooad
What is the difference between composition and aggregation?

What is the difference between composition and aggregation? can anybody give me a sample of this OOAD?

java ooad
How to avoid getters and setters

I have read in many places that "getters and setters are evil". And I understood why so. But I don't …

oop design-patterns properties ooad accessor
OOAD book recommendation: from theory to practice

I am on the quest to be a good OO-developer. OO intrigues me, because I understand the patterns, know why …

oop architecture ooad
What is the difference between Design and Architecture?

These two terms are very diffused. How exactly do they differ? Is there any real life example or scenario that …

architecture ooad
Difference between Generalization and inheritance with suitable example. OOAD

Studying about Generalization and inheritance making me confuse, both gives the same meaning as if something is being inherited..but …

object-oriented-analysis ooad
Abstract base class to force each derived classes to be Singleton

How do I make an abstract class that shall force each derived classes to be Singleton ? I use C#.

c# oop ooad