Training, Open Source computer languages

PerlPHPPythonMySQLhttpd / TomcatTclRubyJavaC and C++LinuxCSS

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
When to bless a Perl variable
Perl's bless function, which turns a reference into an instance of an object, it typically called up as the last action in a constructor method. On today's Perl for Larger Projects course, I was challenged as to when else it might be used. Here's an example - when loading a file of information into objects, in a method that's returning a whole list of objects:


sub fileload {
my ($class,$fname) = @_;
open (FH,$fname);
my @result;
while (<FH>) {
my ($thisclass,$breed,$age,$equiv) = split;
my %self;
$self{breed} = $breed;
$self{age} = $age;
$self{equiv} = $equiv;
push @result, bless \%self,$thisclass;
}
return @result;
}


Interesting, this code's also an example of the two parameter use of bless, where an object is being blessed into a class that's not got the same name as the current package.
(written 2005-03-15 19:52:55)

 
Associated topics are indexed under
P213 - Perl - Creating your own Classes
P218 - Perl - More Objects

Back to
I'm not blogging it
Previous and next
or
Horse's mouth home
Forward to
Extreme training

Some other Articles
We dont stand still
An easy way out
Use me, but use me effectively
Extreme training
When to bless a Perl variable
I'm not blogging it
Getting your examples, my examples and the data files after your course
new 'Perl on the Web' example
Satisfaction of training
Dress for training
1635 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

© WELL HOUSE CONSULTANTS LTD., 2008: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho