18
votes
11answers
601 views
What is so special about Smalltalk?
In every technical publication, and on this site too, people are always comparing OO languages to Smalltalk. My experience is in Java: is Smalltalk so important that I should study it?
18
votes
18answers
1k 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 …
18
votes
27answers
1k views
How can I practice better object-oriented programming?
I have been programming in object-oriented languages for years now but secretly I look at some of the things my colleagues do with envy. A lot of them seem to have some inner OO instinct that I don't …
18
votes
15answers
2k views
What’s the difference between a procedural program and an object oriented program?
I'm fairly new to programming but I've been reading some interesting discussions on StackOverflow about various programming approaches. I'm still not 100% clear on what the difference is between …
16
votes
20answers
634 views
OOP: When is it an object?
I'm trying to understand object orientation. I understand it a little bit of course, but sometimes I'm not 100% clear. How do you decide what should be turned into an object (small object part of …
16
votes
15answers
2k 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
15
votes
17answers
941 views
How do you explain OO to new programmers?
My relative is studying programming and has a hard time understanding classes. He has trouble understanding for example that you need to instantiate it, that methods cannot access variables in other …
14
votes
5answers
694 views
Python - why use “self” in a class?
How do these 2 classes differ?
class A():
x=3
class B():
def __init__(self):
self.x=3
Is there any significant difference?
14
votes
19answers
2k views
Do any other developers get yelled at for making every thing public? [closed]
I am sick and tired of getting yelled at when I make all my variables in a Java class public, for the sake of not needing to write five times more code for getters and setters.
Do others share this …
13
votes
6answers
485 views
Object Oriented questions in Javascript
I've been using javascript for a while, but have never learned the language past the basics. I am reading John Resig's "Pro Javascript Techniques" - I'm coming up with some questions, but I'm not …
13
votes
10answers
1k views
Object-Orientation in C
Can someone please share a set of nifty preprocessor hacks (ANSI C89/ISO C90 compatible please) which enable some kind of ugly (but usable) object-orientation in C? I am familiar with a few different …
13
votes
24answers
2k views
Is JavaScript object-oriented?
There have been some questions about whether or not JavaScript is an object-oriented language. Even a statement, "just because a language has objects doesn't make it OO."
Is JavaScript an …
12
votes
10answers
830 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 …
12
votes
11answers
2k views
Inheritance vs. Aggregation
There are two schools of thought on how to best extend, enhance, and reuse code in an object-oriented system:
Inheritance: extend the functionality of a class by creating a subclass. Override …
12
votes
7answers
2k 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 …
