120
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 have a Dog and Cat …
39
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 …
18
votes
11answers
2k 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?
13
votes
5answers
604 views
How do you get a reference to the enclosing class from an anonymous inner class in Java?
I'm currently creating an explicit reference to this in the outer class so that I have a name to refer to in the anonymous inner class. Is there a better way to do this?
12
votes
6answers
540 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 …
11
votes
14answers
522 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 …
10
votes
8answers
808 views
What is the Dependency Inversion Principle and why is it important?
What is the Dependency Inversion Principle and why is it important?
9
votes
9answers
251 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 line between …
9
votes
10answers
578 views
The Open/Closed Principle
The Open/Closed Principle states that software entities (classes, modules, etc.) should be open for extension, but closed for modification. What does this mean, and why is it an important principle of …
9
votes
9answers
584 views
Overiding the equals method vs creating a new method
I have always thought that the .equals() method in java should be overridden to be made specific to the class you have created. In other words to look for equivalence of two different instances rather …
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, …
8
votes
21answers
749 views
How can you require a constructor with no parameters for types implementing an interface?
Is there a way?
I need all types that implement a specific interface to have a parameterless constructor, can it be done?
I am developing the base code for other developers in my company to use in a …
7
votes
9answers
1k views
Development Cost of Procedural Programming vs. OOP?
I come from a fairly strong OO background, the benefits of OOD & OOP are second nature to me, but recently I've found myself in a development shop tied to a procedural programming habits. The …
7
votes
4answers
392 views
The Interface Segregation Principle
The Interface Segregation Principle says that many client specific interfaces are better than one general purpose interface. Why is this important?
6
votes
6answers
226 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 …
