NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Read more than just Perl books! (Score:2)
But, this book wouldn't sell. It would be a great book, but no one would buy it (where no one means fewer people than it takes to keep the economic incentive above working at Starbucks instead).
I don't see the word "Perl" in the title magically making this a sellable or interesting book. People interested in good design are the same people that read about design despite the language.
I here rumor that the Perl book topics wi
You don't want a book... (Score:1)
And unfortunately, for the most part (rare exceptions like Perl Best Practices excluded) books don't educate the masses.
Things like perlcritic rules are far more likely to have the impact that you want.
I think there's a number of interesting perlcritic rules that could be implemented based on your examples (most of which I agree with)
Damian covers these concepts... (Score:2)
Liskov can bite me (Score:2)
It's important for academics who are more concerned with being correct than useful.
Override nothing! Delegate everything!
Ok, maybe I'm a wee bit bitter after losing a debate about Pathnames, Strings and subclassing.
Re: (Score:2)
I think you must be thinking about something else. Liskov doesn't say anything about not being able to override anything. It merely states that a subclass must be substitutable for the parent class without affecting the correctness of a program. You can override all you want, just make sure that the interface doesn't change.
I don't get it (Score:1)
Re: (Score:2)
It's a question of encapsulation. Imagine that the Salesman class no longer has need of a manager accessor, but you still need to know which office the salesman is with. You might get a office method pushed into the Salesman class. Then, every place where you have the above code needs to be changed to:
If that's called a lot, it can be a maintenance nightmare.
However, what if you have this?
Re: (Score:1)
Re: (Score:2)
You're welcome. It's not exactly intuitive. Took me a couple of tries to get it :)
Re: (Score:1)
Thank you. I hadn’t realized Moose’s powerful delegation mechanisms we’re more than handy shortcuts. This provides an excellent use case for them.
For those who don’t know Moose every attribute object can have a handles er … attribute … so the example here can be defined like:
Re: (Score:1)