0
votes
1answer
39 views
Composition or Inheritance for DAL And BLL?
Questions
Should the Data Access Layer (DAL) and Business Logic Layer (BLL) be exposed through interfaces or through abstract base classes?
When should we choose abstract classes instead of …
5
votes
6answers
163 views
How to design an application in a modular way?
I am looking for pointers, suggestions, links, warnings, ideas and even anecdotical accounts about "how to design an application in a modular way". I am going to use python for this project, but …
0
votes
1answer
18 views
Is it possible to descend from Silverlight’s System.Windows.Controls.Page?
I would like to create a descendant of the Silverlight Navigation Framework's Page class, so I can perform common navigation code on all of my pages, but I can't figure out how to do this. When I …
1
vote
2answers
19 views
Make sure only corresponding implementations or childs of it will be handled
Imagine the following situation:
As may notice the Handler-childs and the Costumer-childs match each other. Each Handler has a method that takes a costumer.
Is there any good way true oo-ish to …
8
votes
4answers
196 views
Philosophical Design Questions for OOP-Tetris
You are writing a Tetris program in Java. How would you set up your class design with regards to the following aspects?
Piece class: Have one Piece class, with an internal array which determines the …
0
votes
6answers
91 views
which resources would you recommend for learning object oriented programming (C#)?
hi,
as the question says, i wish to learn OOP in c#. I am aware of the basics of OOP such as what does class means, what is object, and all 6-7 features of OOP. What i dont understand that how to …
0
votes
0answers
33 views
Model-view seperation, Airplane simulator
I am trying to achieve Model-view separation. My airplane is a class. While developing the application, can't I use the console as sort of viewer. Can I spawn the airplane on it's own thread, while …
16
votes
20answers
619 views
OOP: When is it an object?
I'm trying to understand object orientation. I understand it a little bit of course, but sometimes I'm not 100% clear. How do you decide what should be turned into an object (small object part of …
5
votes
7answers
153 views
When to use a property vs a method? [closed]
Possible Duplicate:
Properties vs Methods
Is there any rule or general best practice as to when to use a property vs a method? Technically any parameterless method can be made in a property …
0
votes
5answers
138 views
How to implement class composition in C++?
If I understand correctly we have at least 2 different ways of implementing composition. (Implementation with smart pointers is excluded case for simplicity. I don't use STL almost and have no desire …
3
votes
6answers
107 views
Is it bad practice to have a class that requires a reference to the instantiating object?
I saw this in someone's code and thought wow, that's an elegant way to solve this particular problem, but it probably violates good OO principles in an epic way.
In the constructor for a set of …
2
votes
10answers
258 views
C# using the “this” keyword in this situation?
Hi,
I've completed a OOP course assignment where I design and code a Complex Number class. For extra credit, I can do the following:
Add two complex numbers. The function will take one complex …
3
votes
7answers
224 views
How not to implement a function of an interface in class?
An interviewer asked me the following question in interview, but I don't know what could be the answer of this question, please help!!!
What must be done if i don't want to
implement a function …
1
vote
7answers
187 views
Java: Static Class?
I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract?
…
1
vote
4answers
75 views
Calling a Child class’ method when processing a list of Parent class objects
This question seems like it might be somewhat common, but I didn't find anything when scowering StackOverflow or the interwebs.
I came across a method in a C++ class that takes a list of (for …
