News Feed
Jobs Feed
Sections




News Archive
Lars Strojny's Blog:
Antipattern the verbose constructor
July 31, 2008 @ 10:29:14

In this new post from Lars Strojny, there's a discussion of an "antipattern" - using the constructor for more than it was intended, the "verbose constructor".

Constructors are often used to shortcut dependency injection and parameter passing on instantiation. This is a valid practice and often leads to shorter code. [...] Instead of creating a new instance of "Money" and calling three setter, everything can be done compactly in the constructor. [...] So for the money object this works pretty well. The code is easy to read, but wait, the first argument can be grasped easily, the second too, but the third? It is not too obvious that it is a divisor is passed.

He compares three different ways to get the data into the class - the already-mentioned parameters in the constructor, passing an array into the constructor and using full getters/setters to push the data into the right places (with fluent interfaces even!).

1 comment voice your opinion now!
antipattern verbose constructor array getter setter


blog comments powered by Disqus

Similar Posts

PHPBuilder.com: Introduction to Arrays and Hashes in PHP - The ABC's of PHP Part 7

Blue Parabola Blog: The SPL Deserves Some Reiteration

Christopher Jones' Blog: Casting PL/SQL arrays as REF CURSORS for Ruby (and PHP)

Kevin Schroeder's Blog: Handling ZF2 FQ Dependency Setter Injections

Josh Adell's Blog: GetSet Methods vs. Public Properties


Community Events











Don't see your event here?
Let us know!


unittest development introduction community interview zendframework2 series functional language code tool conference application opinion podcast release testing phpunit framework example

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework