4
votes
5answers
149 views
Why was TDataSource created originally?
What was (or would be) the reasoning behind creating TDataSource as an intermediary between data bound components and the actual underlying TDataSets, rather than having the compon …
116
votes
31answers
5k views
Interface vs Base class
When should I use an interface and when should I use a base class?
Should it always be an interface if I don't want to actually define a base implementation of the methods?
If I …
10
votes
14answers
485 views
Is it bad practice to make a setter return “this”?
Is it a good or bad idea to make setters in java return "this"?
public Employee setName(String name){
this.name = name;
return this;
}
This pattern can be useful because t …
37
votes
45answers
4k views
What’s the point of OOP?
As far as I can tell, in spite of the countless millions or billions spent on OOP education, languages, and tools, OOP has not improved developer productivity or software reliabili …
0
votes
1answer
22 views
responsibility based modeling versus class reasons to change
In this text I read
Be alert for a component that is just
a glorified responsibility. A
component is supposed to capture an
abstraction that has a purpose in the
system …
0
votes
1answer
40 views
Self contained classes with Qt
I've been trying to make my classes completely self contained, but I'm having some problems, which are probably coming from my missing something that everybody else knew first off. …
0
votes
3answers
48 views
Software Applications Designs
Is strict OOD/Interface-based design/Aspect oriented design is desirable in case of a software application development?
Or, is it desirable to mix all of them for the ease of codi …
2
votes
3answers
153 views
What’s the difference between “use case”, “User Story” and “Usage Scenario”?
Is there an exact, but simple and understandable defintion of the distinction between "use case", "User Story" and "Usage Scenario"?
there are quite a bunch of explanation, but r …
2
votes
2answers
83 views
Is the set of SOLID principles missing an extra ‘D’?
Although not a pure OOD principle - should DRY also be included when thinking about SOLID principles? If not - why not?
18
votes
11answers
1k views
What is the Liskov Substitution Principle?
I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?
0
votes
1answer
36 views
How to design an interface for muliply containment
Consider the following simplified demonstration:
Class X contain class Y. Class Y has public method, Y.doY Stuff().
How to design X interface which use Y methods as is?
If one …
3
votes
6answers
312 views
How to design many-to-many relationships in an object database?
I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.
Consider the following objects: Book, Category.
A …
9
votes
9answers
246 views
OOP. Choosing objects
I'm a relative newbie to thinking in OOP terms, and haven't yet found my ‘gut instinct’ as to the right way to do it. As an exercise I'm trying to figure out where you'd create the …
1
vote
4answers
248 views
Access modifier best practice in C# vs Java
Hi All,
I understand that the rule of thumb in OOD is to minimize access to all members of a given object as best as can be reasonably accomplished.
C# and Java both seem to impl …
1
vote
6answers
108 views
OOD / OOP Etudes / Code exercises
I've been searching the web for some time now. I am looking for small sample exercises for OOD practice (& for some internal TDD workshops).
If there is one single place, where …
