Tagged Questions
Object-oriented programming is a programming paradigm using "objects": data structures consisting of data fields and methods together with their interactions.
400
votes
9answers
64k 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.
...
272
votes
57answers
22k views
Is it just me or are interfaces overused? [closed]
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 ...
242
votes
32answers
14k 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 ...
218
votes
19answers
7k views
Why is OOP hard for me? [closed]
I have trouble writing OOP in PHP... I understand the concept but I never create classes for my projects... mainly because it's often a small project and nothing complex. But when I read OOP, it seems ...
170
votes
15answers
18k 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 ...
146
votes
21answers
20k views
Prefer composition over inheritance?
Why prefer composition over inheritance? What trade-offs are there for each approach? When should you choose inheritance over composition?
136
votes
7answers
9k views
Monad in plain English? (For the OOP programmer with no FP background)
In terms that an OOP programmer would understand (without any functional programming background), what is a monad?
What problem does it solve and what are the most common places it's used?
EDIT:
To ...
109
votes
8answers
5k views
In a PHP project, what patterns exist to store, access and organize helper objects? [closed]
How do you organize and manage your helper objects like the database engine, user notification, error handling and so on in a PHP based, object oriented project?
Say I have a large PHP CMS.
The CMS ...
96
votes
21answers
4k 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: ...
92
votes
10answers
9k views
When should I use a struct instead of a class?
MSDN says that you should use structs when you need lightweight objects. Are there any other scenarios when a struct is preferable over a class?
Edit:
Some people have forgotten that:
1. structs can ...
83
votes
9answers
2k views
Why are private fields private to the type, not the instance?
In C# (and many other languages) it's perfectly legitimate to access private fields of other instances of the same type. For example:
public class Foo
{
private bool aBool;
public void ...
81
votes
19answers
10k views
Why use getters and setters?
What's the advantage of using getters and setters - that only get and set - instead of simply using public fields for those variables?
If getters and setters are ever doing more than just the simple ...
77
votes
16answers
8k views
Websites like projecteuler.net
Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical.
Maybe someone knows similar sites with:
...
76
votes
10answers
10k views
Object Oriented Javascript best practices?
I'm finding myself coding a big project in Javascript. I remember the last one was quite an adventure because hacky JS can quickly becomes unreadable and I want this code to be clean.
Well, I'm using ...
74
votes
44answers
7k 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 ...
72
votes
18answers
9k views
What's your 'no framework' PHP framework?
Even with a ton of PHP frameworks out there to choose from, I know many people prefer a minimal, personal set of libraries. What is your method when it comes to 'rolling your own' framework for PHP ...
70
votes
18answers
18k views
Why does C# not provide the C++ style 'friend' keyword?
The C++ friend keyword allows a class A to designate class B as its friend. This allows Class B to access the private/protected members of class A.
I've never read anything as to why this was left ...
68
votes
14answers
2k views
Why java.lang.Object is not abstract?
Why is the Object class, which is base class of 'em all in Java, not abstract?
I've had this question for a really really long time and it is asked here purely out of curiosity, that's all. Nothing ...
67
votes
15answers
24k views
Why Doesn't C# Allow Static Methods to Implement an Interface?
Why was C# designed this way?
As I understand it, an interface only describes behaviour, and serves the purpose of describing a contractual obligation for classes implementing the interface that ...
64
votes
12answers
2k views
Is it OK to have a class with just properties for refactoring purposes?
I have a method that takes 30 parameters. I took the parameters and put them into one class, so that I could just pass one parameter (the class) into the method. Is it perfectly fine in the case of ...
64
votes
25answers
7k views
Learning/Implementing Design Patterns (For Newbies) [closed]
I'm a confused newbie and hobbyist programmer trying to get a grip on this, so forgive me if my question is a little off or doesn't make much sense.
I see a lot of questions on SO revolving around ...
63
votes
25answers
20k views
When should you use a class vs a struct in C++?
In what scenarios is it better to use a struct vs a class in C++?
60
votes
14answers
6k views
Why all the Active Record hate? [closed]
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 ...
59
votes
3answers
26k views
Chain-calling parent constructors in python
Consider this - a base class A, class B inheriting from A, class C inheriting from B. What is a generic way to call a parent class constructor in a constructor? If this still sounds too vague, here's ...
59
votes
27answers
3k 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, ...
58
votes
9answers
3k views
How do functional programming languages work?
I was just reading this excellent post, and got some better understanding of what exactly object oriented programming is, how Java implements it in one extreme manner, and how functional programming ...
58
votes
13answers
3k views
Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC [closed]
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 ...
56
votes
29answers
15k views
Can you write object oriented code in C?
Can you write object oriented code in C? Especially with regard to polymorphism.
See also: http://stackoverflow.com/questions/415452/object-orientation-in-c
56
votes
9answers
15k views
Should a method that implements an interface method be annotated with @Override
Intro
My real question is about the use of the annotation. Trying to find an answer myself, I ran into several other questions. This is why there are also related questions below. I hope this is not ...
55
votes
12answers
2k views
Is there an alternative to bastard injection? (AKA poor man's injection via default constructor)
I most commonly am tempted to use "bastard injection" in a few cases. When I have a "proper" dependency-injection constructor:
public class ThingMaker {
...
public ThingMaker(IThingSource ...
55
votes
14answers
10k views
Interface vs Abstract Class (general OO)
I have had recently two telephone interviews where I've been asked about the differences between an Interface and an Abstract class. I have explained every aspect of them I could think of, but it ...
55
votes
17answers
24k views
What is the difference between a method and a function
I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons.
I am having trouble getting my head ...
54
votes
12answers
2k views
Naming Classes - How to avoid calling everything a “<WhatEver>Manager”?
A long time ago I have read an article (I believe a blog entry) which put me on the "right" track on naming objects: Be very very scrupulous about naming things in your program.
For example if my ...
53
votes
17answers
2k views
Any good examples of inheriting from a concrete class?
Background:
As a Java programmer, I extensively inherit (rather: implement) from interfaces, and sometimes I design abstract base classes. However, I have never really felt the need to subclass a ...
53
votes
18answers
11k views
Java: Are Getters and Setters evil?
I'm currently working on a simple game in Java with several different modes. I've extended a main Game class to put the main logic within the other classes. Despite this, the main game class is still ...
53
votes
24answers
7k views
Using “final” modifier whenever applicable in java
In Java, there is a practice of declaring every variable (local or class), parameter final
if they really are.
Though this makes the code a lot more verbose,
this helps in easy reading/grasping of ...
52
votes
10answers
3k views
Building big, immutable objects without using constructors having long parameter lists
I have some big (more than 3 fields) Objects which can and should be immutable. Every time I run into that case i tend to create constructor abominations with long parameter lists. It doesn't feel ...
52
votes
10answers
8k 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?
51
votes
11answers
16k views
JavaScript private methods
To make a JavaScript class with a public method I'd do something like:
function Restaurant()
{
}
Restaurant.prototype.buy_food = function()
{
// something here
}
...
49
votes
23answers
4k views
How do you design object oriented projects?
I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interact.
I took an OOD ...
49
votes
18answers
2k views
Must Dependency Injection come at the expense of Encapsulation?
If I understand correctly, the typical mechanism for Dependency Injection is to inject either through a class' constructor or through a public property (member) of the class.
This exposes the ...
49
votes
10answers
7k views
Adding a Method to an Existing Object
I've read that it is possible to add a method to an existing object (e.g. not in the class definition) in python, I think this is called Monkey Patching (or in some cases Duck Punching). I understand ...
48
votes
4answers
10k views
Use of alloc init instead of new (Objective-C)
Learning Objective-C and reading sample code, I notice that objects are usually created using this method:
SomeObject *myObject = [[SomeObject alloc] init];
instead of:
SomeObject *myObject = ...
48
votes
46answers
4k views
Your personal, successful coding practices [closed]
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 ...
46
votes
18answers
6k views
What does it mean to “program to an interface”?
I have seen this mentioned a few times and I am not totally clear on what it means. When and why would you do this?
I know what interfaces do, but the fact I am not clear on this makes me think I am ...
46
votes
23answers
5k 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 ...
44
votes
9answers
1k views
Avoiding 'instanceof' in Java
I have the following (maybe common) problem and it absolutely puzzles me at the moment:
There are a couple of generated event objects which extends the abstract class Event and I want to divide them ...
44
votes
23answers
2k views
Should Java methods be static by default?
Say you're writing method foo() in class A. foo doesn't ever access any of A's state. You know nothing else about what foo does, or how it behaves. It could do anything.
Should foo always be ...
43
votes
23answers
12k views
When should you use 'friend' in C++?
I have been reading through the C++ FAQ and was curious about the friend declaration. I personally have never used it, however I am interested in exploring the language.
What is a good example of ...
42
votes
16answers
2k views
Is there anything wrong with a class with all static methods?
I'm doing code review and came across a class that uses all static methods. The entrance method takes several arguments and then starts calling the other static methods passing along all or some of ...