up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

68% accept rate
Elaborate please. – DevinB May 28 '09 at 19:25
2  
Or, better yet, ask an actual question. – altCognito May 28 '09 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 '09 at 19:28
Not really a question, but at least one person was able to answer it. – zsharp May 28 '09 at 19:34
feedback

closed as not a real question by altCognito, John Saunders, a'b'c'd'e'f'g'h', M4N, Brian Rasmussen May 28 '09 at 19:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

2 Answers

up vote 4 down vote accepted

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|improve this answer
yes, this is what i meant. – zsharp May 28 '09 at 19:30
feedback

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|improve this answer
the original OO-MVC makes sense only for GUIs, the more common web-MVC is more layered than OO. – Javier May 28 '09 at 19:51
Javier, can you elaborate on this point with regard to the layering? – zsharp May 29 '09 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 '09 at 2:58
feedback

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