Thread Testen, ob referenz blessed ist (28 answers)
Opened by esskar at 2005-02-17 01:02

renee
 2005-02-17 17:03
#51836 #51836
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Zitat perldoc -f bless:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
       bless REF,CLASSNAME
bless REF
This function tells the thingy referenced by REF
that it is now an object in the CLASSNAME package.
If CLASSNAME is omitted, the current package is
used. Because a "bless" is often the last thing
in a constructor, it returns the reference for
convenience. Always use the two-argument version
if the function doing the blessing might be inher-
ited by a derived class. See perltoot and perlobj
for more about the blessing (and blessings) of
objects.

Consider always blessing objects in CLASSNAMEs
that are mixed case. Namespaces with all lower-
case names are considered reserved for Perl prag-
mata. Builtin types have all uppercase names, so
to prevent confusion, you may wish to avoid such
package names as well. Make sure that CLASSNAME
is a true value.

See "Perl Modules" in perlmod.
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Testen, ob referenz blessed ist