vote up 0 vote down star

It seems that while I strive to maintain OO principles, it all seems so contrived or unnatural.

flag

73% accept rate
Elaborate please. – devinb May 28 at 19:25
2  
Or, better yet, ask an actual question. – altCognito May 28 at 19:27
1  
I realize that my comment was actually pretty vague (oh irony). Could you please elaborate in what sense your OO code seems to be contrived or unnatural. What design patterns are you attempting to use, and how are they failing you? – devinb May 28 at 19:28
Not really a question, but at least one person was able to answer it. – zsharp May 28 at 19:34

closed as not a real question by altCognito, John Saunders, ocdecio, Martin, Brian Rasmussen May 28 at 19:30

2 Answers

vote up 4 vote down check

If you think of objects as constructs for holding state information, the definition of "object oriented" becomes strained by the stateless nature of web requests. However, stateless objects are still objects and web applications can follow OO design principles within that context.

link|flag
yes, this is what i meant. – zsharp May 28 at 19:30
vote up 5 vote down

My advice is to not get too dogmatic about OO principles. They work well, but sometimes when people say they're striving to maintain OO principles it can mean that they're creating a class for everything, even when it's not really appropriate. Things also get less unnatural as you get used to them, such as "x = 3" is natural for an assignment, even though someone with a math background would think it's unnatural.

You could also try taking a look at existing OO web apps and design patterns. A common OO design pattern is the MVC pattern, which is supported (almost enforced) by Ruby on Rails and Django. Do a search for MVC.

link|flag
the original OO-MVC makes sense only for GUIs, the more common web-MVC is more layered than OO. – Javier May 28 at 19:51
Javier, can you elaborate on this point with regard to the layering? – zsharp May 29 at 0:18
1  
the GUI-MVC (made popular on SmallTalk) was modular and OOP; each module had three objects more or less tightly coupled, forming a single module instantiated when needed. web-MVC, OTOH, is three layers, not objects, each one abstracting some aspect to give a higher-level access to some part (storage, presentation and control flow). they're not composed in a bigger subsystem, and they don't represent a visual element, together they manage a whole app (or subapp). totally different things, maybe related only at a philosophical level, not at a design level. – Javier May 29 at 2:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.