Perl Programming/Keywords/bless
The bless keyword
editThe bless function tells the thingy REFERENCEd that it is an object in the CLASSNAME package. Without the word CLASSNAME, the current package is understood.
As bless is often the last command in the constructor, it returns a reference to the object.
Syntax
edit bless REFERENCE, CLASSNAME
bless REFERENCE