Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Load in external functions fro ...Find out the type of thing bei ... (Berikutnya)
Keywords related to classes and object-orientedness

Create an object

Daftar Isi

  • bless REF,CLASSNAME

  • bless REF

    This function tells the thingy referenced by REF that it is now an objectin the CLASSNAME package. If CLASSNAME is omitted, the current packageis used. Because a bless is often the last thing in a constructor,it returns the reference for convenience. Always use the two-argumentversion if a derived class might inherit the function doing the blessing.Seeperlobj for more about the blessing (and blessings) of objects.

    Consider always blessing objects in CLASSNAMEs that are mixed case.Namespaces with all lowercase names are considered reserved forPerl pragmata. Builtin types have all uppercase names. To preventconfusion, you may wish to avoid such package names as well. Make surethat CLASSNAME is a true value.

    See Perl Modules in perlmod.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Load in external functions fro ...Find out the type of thing bei ... (Berikutnya)