Quote:
Originally Posted by k0nr4d
As for why he wants OOP, god knows. I'm not a fan...
|
Do you even know what OOP stands for? I think that is one of the top 10 dumbest things I have ever seen anyone post here about programming... lol.
OOP = Object Oriented Programming
What is it exactly?
- It's a methodology that allows you to write much smaller programs (thus more efficient)
- It provides the programmer with better organization of code... better maintainability
- It provides much easier scalability in your applications because you can extend the old code base and add to it without having to rewrite it
That said... there are some pitfalls... Just like anything in life... too much of a good thing is bad. Any programmer should use the K.I.S.S. technique. ;) For the most part there is no need to make shit overcomplicated. A good example of that problem is Zend Framework. The idea started out good but it has been way overcomplicated... just like any other frameworks I find on the net. Too much garbage.