Tagged Questions

Object Oriented Analysis and Design

learn more… | top users | synonyms

63
votes
25answers
20k 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++?
29
votes
9answers
15k 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 ...
25
votes
11answers
2k views

Why do we use Interface? Is it only for Standardization?

Why do we use Interface? Is it only for Standardization?
19
votes
5answers
1k views

What does “program to interfaces, not implementations” mean?

One stumbles upon this phrase when reading about design patterns. But I don't understand it, could someone explain this for me?
15
votes
7answers
3k views

Coupling and cohesion

I'm trying to boil down the concepts of coupling and cohesion to a concise definition. Can someone give me a short and understandable explanation (shorter than the definitions on Wikipedia here and ...
14
votes
6answers
2k 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 ...
13
votes
7answers
4k 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 ...
10
votes
4answers
198 views

Business rules that are valid for specific time span – how to manage in an orderly manner

I just started working for a government agency and I have come across an interesting problem: business rules depend on legislature and as such they have to respect the exact time periods that ...
9
votes
9answers
760 views

What is an Anti-Pattern?

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 in ...
9
votes
10answers
893 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. ...
7
votes
6answers
14k views

What's is the difference between include and extend in use case diagram?

What's is the difference between include and extend in a use case diagram?
6
votes
6answers
145 views

Splitting objects into their most fundamental parts

Not sure if the title captures what I'm trying to say here. When designing in OO should I be splitting my objects up into their most specific areas - so if I have a factory object that deals with ...
6
votes
10answers
809 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 ...
6
votes
9answers
627 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 ...
5
votes
7answers
671 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 ...
5
votes
1answer
1k views

What is Abstractness vs. Instability Graph?

I recently used NDepend and it produced a good report on my .net assemblies and related pdbs. The most interesting thing I found in the report was abstractness vs. instability graph. I wanted to ...
5
votes
12answers
2k 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 ...
4
votes
2answers
90 views

How should I abstract a collection of objects owned by another object?

In a system for managing vocational training, I have a CourseBase abstract class, which I decided on using in favour of an ICourse interface because I'd prefer to avoid duplicating implementation code ...
4
votes
2answers
215 views

How can I grasp the concept of pure OOD?

I still have a little problem grasping the concept of pure OOD. Let's say we have a class Human and we live in a world where sometimes the human walks (the brain commands the legs), where sometimes ...
4
votes
5answers
269 views

Encapsulation. Well-designed class

Today I read a book and the author wrote that in a well-designed class the only way to access attributes is through one of that class methods. Is it a widely accepted thought? Why is it so important ...
4
votes
6answers
885 views

Cohesion & Coupling

Anyone point out me some good example for cohesion and coupling. Increasing cohesion/coupling will lead to good software design?
4
votes
2answers
334 views

Method Calling Public/Private Members or Methods Best Practice - C#.NET

What is the best practice for calling members/fields from a private method and public method? Should the private method always call private fields or should they call the public members? private ...
4
votes
10answers
651 views

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 composition gives you more flexibility then inheritance, and more of such wisdom. However, I ...
4
votes
8answers
338 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, ...
3
votes
0answers
664 views

A Question about C++ / OOD Interview Questions [closed]

What is the most interesting or difficult question asked to you during an C++/OOD interview? What is the most interesting or difficult question you like to ask to a candidate during a C++/OOD ...
3
votes
3answers
281 views

Dispose the singleton object in .NET

I have two classes ClassA and ClassB both having a reference to a singleton object ClassHelper. My question is how should i dispose the singleton object once im done using both the ClassA and ClassB ...
3
votes
3answers
164 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
2answers
49 views

Program Flow via Custom Exception

I have a process that is parsing an XML file. This is occuring in the PAckage Class. The Package class has a Delegate that sets the object to an invalid state and captures the detailed info on ...
2
votes
4answers
83 views

How to write data of type A to format of type B

I'm implementing a thing that generates results and writes them to a file of certain format. Fairly simple, but I want this to be dynamic. I'll throw down a few classes. Data - base class for all ...
2
votes
1answer
268 views

Is there any online material for real world examples of Object oriented design problems?

I want to practice solving Object oriented design problems in C++. Is there any online material with sample real world problems and solutions using design patterns ? I searched but i couldn't get ...
2
votes
1answer
131 views

Will this static class break in a multi user scenario?

Say I make a static class like following with an extension method: public static class MyStaticExtensionClass { private static readonly Dictionary<int, SomeClass> AlgoMgmtDict = new ...
2
votes
9answers
217 views

OO Design question

I have a two types of products - Discounted (10% Disc) and NonDiscounted (0%) Each of these can be either LocalProduct / ExportableProduct with export one attracting a 15% sales tax. What is the best ...
2
votes
3answers
79 views

Class design help needed

I need to develop a certain sw module which outputs the data in the following format Main object and related object and Quantity i.e Desktop Computer ---- CPU 1x ---- Mouse 1x ---- KB 1x ---- ...
2
votes
3answers
71 views

Encapsulate Use Cases in a software

I usually write use cases for all the software that I develop. For each use case I generally write a controller which directs the flow (implements a use case). I have recently started developing web ...
2
votes
2answers
886 views

What's the UML syntax for multiplicity? ( inside the class box )

I know it is possible to specify the multiplicity within the same class box, without having to draw the link to another class. My question is, Where should the multiplicity go, after the name or ...
2
votes
5answers
1k 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
270 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
534 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 ...
2
votes
4answers
1k views

Best practices with jQuery form binding code in an application

We have an application with a good amount of jQuery JSON calls to server side code. Because of this, we have a large amount of binding code to parse responses and bind the appropriate values to the ...
1
vote
1answer
75 views

Can I run objects in memory or do I need to look at Serializeing to DB

I am working on a multithread app that has about 4 basic Entities at its core e.g public class Album { public ICPN ICPN { get; set; } public string Title { get; set; } public string ...
1
vote
3answers
44 views

Assigning responsibility: a Game that has Players which each has a BankAccount

I've been studying some Object Oriented Analysis and Design lately, and I feel that I got a pretty good overall feel for it. But this little scenario keeps bugging me. Let's say I'm designing a ...
1
vote
2answers
133 views

Is my OOP design correct?

I have a scenario where I am designing a system for a retailer. This is not a proper live application but just a scenario to check whether my OO design skills are correct and whether I am thinking ...
1
vote
2answers
169 views

Should I allow object to delete itself from its interface? Is it correct for OOD?

I have the following: interface File { String name(); ... } interface FileService { List<File> getAllFiles(); ... } While working with the such interface If I decided to delete an ...
1
vote
6answers
111 views

Proper use of an abstract class

I am using .Net and have a simple master- and sub-class design. My master class contains nearly all the functionality and the sub-class only needs to set a value from the master. I was considering ...
1
vote
1answer
323 views

Code design for a 2D game

I am in need of some resources on how to design the main components of a basic 2d game. Let's call it an "engine". How should I design my renderer, scene manager, entity manager a.s.o. and how should ...
1
vote
2answers
104 views

php object oriented programming

I have some questions pertaining OOP. I'm not an advanced user and I'm facing a problem which some may have experience before. Basically I'm using MVC to work with my php projects. I tried to make ...
1
vote
3answers
69 views

Question about Encapsulation (Book: HF OOA&D )

i'm reading this book (Head First Object Oriented Design & Analysis). In chapter 5 there is a suggestion which i would like to have some other toughts about it. The book says: "When you have ...
1
vote
1answer
145 views

Coordinating MVP triads

Say you have multiple MVP triads in your application (WinForms .NET 2.0 app) and each triad looks after one area of responsibility. What is your preferred way of coordinating the communication between ...
1
vote
3answers
70 views

OOP Design: Where to put object specific “compare” method?

I have some measurement object instances from a series of test runs stored in a test collection object. I also have some logic that can compare two test result object instances and tell me if they ...
1
vote
2answers
264 views

technical aspects of 'isa' in c++

what exactly does it mean from technical point of view, I understood that it means that my derived class can always be converted to base class, that's it? I read some materials without any reference ...

1 2