Tagged Questions

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 …
33
votes
12answers
2k 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 …
31
votes
25answers
2k views

Learning/Implementing Design Patterns (For Newbies)

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 …
26
votes
23answers
2k 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 …
25
votes
19answers
840 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? …
25
votes
31answers
2k views

Are nulls in a relational database okay?

There's a school of thought that null values should not be allowed in a relational database. That is, a table's attribute (column) should not allow null values. Coming from a software development …
24
votes
12answers
2k views

Large Switch statements: Bad OOP?

I've always been of the opinion that large switch statements are a symptom of bad OOP design. In the past, i've read articles that discuss this topic and they have provided altnerative OOP based …
24
votes
16answers
2k views

What is “loose coupling?” Please provide examples.

I can't seem to grok the concept of "loose coupling." I suppose it doesn't help that the word "loose" usually has a negative connotation, so I always forget that loose coupling is a good thing. Will …
23
votes
14answers
1k views

What is immutability and why should I worry about it?

I've read a couple of articles on immutability but still don't follow the concept very well. I made a thread on here recently which mentioned immutability, but as this is a topic in itself, I am …
23
votes
19answers
1k views

Why would I want to use Interfaces?

I understand that they force you to implement methods and such but what I cant understand is why you would want to use them. Can anybody give me a good example or explanation on why I would want to …
21
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 …
20
votes
15answers
1k views

How do you plan an application’s architecture before writing any code?

One thing I struggle with is planning an application's architecture before writing any code. I don't mean gathering requirements to narrow in on what the application needs to do, but rather …
20
votes
23answers
3k 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 …
19
votes
13answers
518 views

Clean OO-structure vs. SQL performance

When programming in PHP I always try to create meaningful 'models' (classes) that correspond to tables in the database. I often encounter the following problem: Assuming that I've created a database …
18
votes
18answers
690 views

When should we create a new method?

I'm trying to find out if there is a consensus on when we should create a new method in our code. For example should we only create a new method/function if we are going to be using the code again …

1 2 3 4 5 66 next
15 30 50 per page