Tagged Questions

12
votes
6answers
532 views

How does one elaborate design using CRC cards?

I've always been wondering how people use CRC (class responsiblity collaboration) cards. I've read about them in books, found vague information on the internet, but never grasped it really. I think …
12
votes
24answers
3k views

When should you use a class vs a struct in C++?

In what scenarios is it better to use a struct vs a class in C++?
7
votes
10answers
419 views

Is there a benefit to having both an abstract class and an interface?

I started out with a generic interface called ILogin. The interfaces requires that you implement two properties: UserID and Password. I have many login-type classes that implement this interface. …
6
votes
6answers
584 views

Constructors vs Factory Methods

While modeling classes what is the preferred way of initializing it, Constructors Factory Methods and what would be the considerations of using either of them. In certain situations I prefer …
5
votes
7answers
283 views

What is an Anti-Pattern?

Hi, I am Studying about Patterns and Anti-patterns . I have a clear idea about Patterns. but I am not getting Anti-Patterns. Web Definitions and Wikipedia is confusing me a lot. can anybody explain me …
4
votes
7answers
142 views

Object oriented design resources

I am looking for good resources (books/web sites) for learning object oriented design. Every resource that I find are tutoring me more on UML and RUP instead of OO design. Head first book's sheer …
4
votes
10answers
454 views

How do I use composition with inheritance?

I'm going to try to ask my question in the context of a simple example... Let's say I have an abstract base class Car. Car has-a basic Engine object. I have a method StartEngine() in the abstract …
4
votes
9answers
361 views

OO Design, open/closed principle question

I've been thinking about this object oriented design question for a while now and have unable to come up with a satisfactory solution, so thought I'd throw it open to the crowds here for some …
3
votes
10answers
844 views

How to develop *real life* oop skills?

I've been studying OOP for quite a while now and I have a good grasp of the theory. I read the Head First book on OOP and, while it reinforced a lot of the theory, I found the case studies to be …
3
votes
7answers
2k views

Abstraction VS Information Hiding VS Encapsulation

Can you tell me what is difference between ABSTRACTION and INFORMATION HIDING in software development? I am confused abstraction hides detail implementation and information hiding abstracts whole …
2
votes
8answers
120 views

What’s a good metaphor for Dependency Injection?

A metaphor that stuck with me when programming non-DI systems is "a person playing with his/her toys". A person being an object and the person's toys being anything that object creates, stores, …
2
votes
3answers
125 views

Company & Contacts Object Design Help

I am hoping that someone (or some people) could help us with a problem that we have wrangled with for a few days. How to organize our business objects given the attached diagram? We are looking …
2
votes
4answers
269 views

What is the difference b/w Design and Architecture ?

What is the difference b/w Design and Architecture ? hi , i have asked this question from many teachers but no one gave me satisfactory answer . these two terms are very diffused .. i am not …
2
votes
8answers
218 views

Help with design

I think I am pretty good with programming C# syntax. What I am looking for now is some resources, books(preferable), websites, blogs, that deal with the best way to design object oriented Desktop …
2
votes
14answers
348 views

Inheritance and interfaces

This is somewhat of a follow-up question to this question. Suppose I have an inheritance tree as follows: Car -> Ford -> Mustang -> MustangGT Is there a benefit to defining interfaces for …

1 2 next
15 30 50 per page