Perl Programming/Keywords/bless

Previous: binmode Keywords Next: break

The bless keywordEdit

The 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.

SyntaxEdit

  bless REFERENCE, CLASSNAME
  bless REFERENCE
Previous: binmode Keywords Next: break