6
votes
7answers
127 views
Passing hashes instead of method parameters
I see that in Ruby (and dynamically typed languages, in general) a very common practice is to pass a hash, instead of declaring concrete method parameters. For example, instead of declaring a method …
-1
votes
0answers
58 views
What’s the next big metaphor in software development? [closed]
Possible Duplicate:
Programming: The next big language
The late eighties nineties and pretty much this entire decade have been ruled by the object. Functional aspects are beginning to sneak …
2
votes
6answers
133 views
.NET Project Architecture
Hi, I have sort of a philosophical question, which also need to consider the performance impact.
We are designing a new system with many sub-services that are not related to each other, yet, some may …
0
votes
1answer
36 views
are scenarios/stories the new interface in BDD/TDD?
PHP is somewhat crippled since it doesn't have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I'm not able to go from the scenarios …
1
vote
2answers
32 views
Code generation for composition using Eclipse
Effective Java, along with other sources suggest that we should consider using composition over inheritance. I have often found my self achieving such composition by using the Decorator pattern and …
8
votes
12answers
2k views
Get/Set in the c++ world, faux-pas?
I notice that get/set is not the c++ way as far as I can tell by looking at boost/stl, and even reading the writings of some of the top c++ experts.
Does anyone use get/set in their c++ class design, …
6
votes
6answers
232 views
Where does the idea that an object should only do one thing come from?
I'm not sure I agree with it, so I'd like to find the book or journal article behind this idea so that I can check that I understand exactly what they're saying and what context they mean it.
I think …
12
votes
14answers
535 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 then you can chain …
4
votes
5answers
175 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 components just connect …
0
votes
1answer
27 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. It may happen that …
40
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 reliability, nor has it …
12
votes
6answers
556 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 …
0
votes
1answer
48 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...
Anyway, take …
10
votes
8answers
825 views
What is the Dependency Inversion Principle and why is it important?
What is the Dependency Inversion Principle and why is it important?
0
votes
3answers
60 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 coding?
Are all …
