in reply to Coding styles: OOP vs. Subs
Some problems are better solved using OO. Some problems are better solved by avoiding OO. Most problems can be solved either way, and whether you use OO or something else is a matter of preference.
As for the "numerous subs", solving the same problem using OO typically requires at least the same amount of methods, and often more, because you'll have methods with the same name in different classes.
|
|---|