77
votes
52answers
8k views
Is it just me or are interfaces overused?
Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)…
So, after just …
49
votes
13answers
5k views
Does Functional Programming Replace GoF Design Patterns?
Since I started learning F# and OCaml last year, I've read a huge number of articles which insist that design patterns (especially in Java) are workarounds for the missing features in imperative …
49
votes
5answers
5k views
What is a metaclass in Python?
I´ve mastered almost all the Python concepts (well, let´s say there are just OO concepts :-)) but this one is tricky.
I know it has something to do with introspection but it´s still unclear to me.
…
42
votes
20answers
2k views
How will I know when to create an interface?
I'm at a point in my development learning where I feel like I must learn more about interfaces.
I frequently read about them but it just seems like I cannot grasp them.
I've read examples like: …
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 …
40
votes
27answers
1k views
How do you find a needle in a haystack?
When implementing a needle search of a haystack in an object-oriented way, you essentially have three alternatives:
1. needle.find(haystack)
2. haystack.find(needle)
3. searcher.find(needle, …
31
votes
16answers
3k views
Why all the Active Record hate?
As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on Active Record.
Often, people say that it doesn't scale well …
29
votes
21answers
2k views
Object Oriented vs Relational Databases
Objects oriented databases seem like a really cool idea to me, no need to worry about mapping your domain model to your database model, no messing around with sql or ORM tools. The way I understand …
25
votes
12answers
911 views
Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC
I have a fairly slick approach to doing C# development using the above tools/methodologies. Specifically i follow the "Jeffrey Palermo Agile Bootcamp" onion architecture. I feel like I'm a strong …
25
votes
19answers
836 views
How much work should the constructor for an HTML parsing class do?
How much work is it reasonable for an object constructor to do? Should it simply initialize fields and not actually perform any operations on data, or is it okay to have it perform some analysis?
…
23
votes
45answers
3k views
Your personal, successful coding practices.
I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted …
22
votes
11answers
2k views
What’s the point of inheritance in Python?
I apologize if this question is long. This was part of a blog post I did some time ago, and a reader suggested me to post it on stackoverflow. I trimmed it a bit though.
Suppose you have the …
21
votes
28answers
1k views
How to explain an object?
It's been years since I thought of this, but I am training some real juniors soon and need to explain what an object is to someone who doesn't know what it is.
Based on what you use in the real …
20
votes
11answers
1k views
Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)
I mean, aside from its obligating name (the Standard Template Library)...
C++ initially intended to present OOP concepts into C. That is: you could tell what a specific entity could and couldn't do …
20
votes
27answers
2k views
How to Think in OO
Besides the general, "What is OO?" question, I want to understand how one transitions from a procedural-based programmer to someone who gets OO.
I'm anticipating the winning answer would contain …
