.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05) .\" .\" Standard preamble: .\" ======================================================================== .de Sh \" Subsection heading .br .if t .Sp .ne 5 .PP \fB\\$1\fR .PP .. .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .ie \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\} .el \{\ . de IX .. .\} .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. . \" fudge factors for nroff and troff .if n \{\ . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] \fP .\} .if t \{\ . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff .if n \{\ . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} .if t \{\ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' .ds 8 \h'\*(#H'\(*b\h'-\*(#H' .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] .ds ae a\h'-(\w'a'u*4/10)'e .ds Ae A\h'-(\w'A'u*4/10)'E . \" corrections for vroff .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' . \" for low resolution devices (crt and lpr) .if \n(.H>23 .if \n(.V>19 \ \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} .rm #[ #] #H #V #F C .\" ======================================================================== .\" .IX Title "UNIVERSAL 3" .TH UNIVERSAL 3 "2008-03-01" "perl v5.10.0" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" UNIVERSAL \- base class for ALL classes (blessed references) .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& $is_io = $fd\->isa("IO::Handle"); \& $is_io = Class\->isa("IO::Handle"); \& \& $does_log = $obj\->DOES("Logger"); \& $does_log = Class\->DOES("Logger"); \& \& $sub = $obj\->can("print"); \& $sub = Class\->can("print"); \& \& $sub = eval { $ref\->can("fandango") }; \& $ver = $obj\->VERSION; \& \& # but never do this! \& $is_io = UNIVERSAL::isa($fd, "IO::Handle"); \& $sub = UNIVERSAL::can($obj, "print"); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\f(CW\*(C`UNIVERSAL\*(C'\fR is the base class from which all blessed references inherit. See perlobj. .PP \&\f(CW\*(C`UNIVERSAL\*(C'\fR provides the following methods: .ie n .IP """$obj\->isa( TYPE )""" 4 .el .IP "\f(CW$obj\->isa( TYPE )\fR" 4 .IX Item "$obj->isa( TYPE )" .PD 0 .ie n .IP """CLASS\->isa( TYPE )""" 4 .el .IP "\f(CWCLASS\->isa( TYPE )\fR" 4 .IX Item "CLASS->isa( TYPE )" .ie n .IP """eval { VAL\->isa( TYPE ) }""" 4 .el .IP "\f(CWeval { VAL\->isa( TYPE ) }\fR" 4 .IX Item "eval { VAL->isa( TYPE ) }" .PD Where .RS 4 .ie n .IP """TYPE""" 4 .el .IP "\f(CWTYPE\fR" 4 .IX Item "TYPE" is a package name .ie n .IP "$obj" 4 .el .IP "\f(CW$obj\fR" 4 .IX Item "$obj" is a blessed reference or a string containing a package name .ie n .IP """CLASS""" 4 .el .IP "\f(CWCLASS\fR" 4 .IX Item "CLASS" is a package name .ie n .IP """VAL""" 4 .el .IP "\f(CWVAL\fR" 4 .IX Item "VAL" is any of the above or an unblessed reference .RE .RS 4 .Sp When used as an instance or class method (\f(CW\*(C`$obj\->isa( TYPE )\*(C'\fR), \&\f(CW\*(C`isa\*(C'\fR returns \fItrue\fR if \f(CW$obj\fR is blessed into package \f(CW\*(C`TYPE\*(C'\fR or inherits from package \f(CW\*(C`TYPE\*(C'\fR. .Sp When used as a class method (\f(CW\*(C`CLASS\->isa( TYPE )\*(C'\fR, sometimes referred to as a static method), \f(CW\*(C`isa\*(C'\fR returns \fItrue\fR if \f(CW\*(C`CLASS\*(C'\fR inherits from (or is itself) the name of the package \f(CW\*(C`TYPE\*(C'\fR or inherits from package \f(CW\*(C`TYPE\*(C'\fR. .Sp If you're not sure what you have (the \f(CW\*(C`VAL\*(C'\fR case), wrap the method call in an \&\f(CW\*(C`eval\*(C'\fR block to catch the exception if \f(CW\*(C`VAL\*(C'\fR is undefined. .Sp If you want to be sure that you're calling \f(CW\*(C`isa\*(C'\fR as a method, not a class, check the invocant with \f(CW\*(C`blessed\*(C'\fR from Scalar::Util first: .Sp .Vb 1 \& use Scalar::Util \*(Aqblessed\*(Aq; \& \& if ( blessed( $obj ) && $obj\->isa("Some::Class") { \& ... \& } .Ve .RE .ie n .IP """$obj\->DOES( ROLE )""" 4 .el .IP "\f(CW$obj\->DOES( ROLE )\fR" 4 .IX Item "$obj->DOES( ROLE )" .PD 0 .ie n .IP """CLASS\->DOES( ROLE )""" 4 .el .IP "\f(CWCLASS\->DOES( ROLE )\fR" 4 .IX Item "CLASS->DOES( ROLE )" .PD \&\f(CW\*(C`DOES\*(C'\fR checks if the object or class performs the role \f(CW\*(C`ROLE\*(C'\fR. A role is a named group of specific behavior (often methods of particular names and signatures), similar to a class, but not necessarily a complete class by itself. For example, logging or serialization may be roles. .Sp \&\f(CW\*(C`DOES\*(C'\fR and \f(CW\*(C`isa\*(C'\fR are similar, in that if either is true, you know that the object or class on which you call the method can perform specific behavior. However, \f(CW\*(C`DOES\*(C'\fR is different from \f(CW\*(C`isa\*(C'\fR in that it does not care \fIhow\fR the invocant performs the operations, merely that it does. (\f(CW\*(C`isa\*(C'\fR of course mandates an inheritance relationship. Other relationships include aggregation, delegation, and mocking.) .Sp By default, classes in Perl only perform the \f(CW\*(C`UNIVERSAL\*(C'\fR role. To mark that your own classes perform other roles, override \f(CW\*(C`DOES\*(C'\fR appropriately. .Sp There is a relationship between roles and classes, as each class implies the existence of a role of the same name. There is also a relationship between inheritance and roles, in that a subclass that inherits from an ancestor class implicitly performs any roles its parent performs. Thus you can use \f(CW\*(C`DOES\*(C'\fR in place of \f(CW\*(C`isa\*(C'\fR safely, as it will return true in all places where \f(CW\*(C`isa\*(C'\fR will return true (provided that any overridden \f(CW\*(C`DOES\*(C'\fR \fIand\fR \f(CW\*(C`isa\*(C'\fR methods behave appropriately). .ie n .IP """$obj\->can( METHOD )""" 4 .el .IP "\f(CW$obj\->can( METHOD )\fR" 4 .IX Item "$obj->can( METHOD )" .PD 0 .ie n .IP """CLASS\->can( METHOD )""" 4 .el .IP "\f(CWCLASS\->can( METHOD )\fR" 4 .IX Item "CLASS->can( METHOD )" .ie n .IP """eval { VAL\->can( METHOD ) }""" 4 .el .IP "\f(CWeval { VAL\->can( METHOD ) }\fR" 4 .IX Item "eval { VAL->can( METHOD ) }" .PD \&\f(CW\*(C`can\*(C'\fR checks if the object or class has a method called \f(CW\*(C`METHOD\*(C'\fR. If it does, then it returns a reference to the sub. If it does not, then it returns \&\fIundef\fR. This includes methods inherited or imported by \f(CW$obj\fR, \f(CW\*(C`CLASS\*(C'\fR, or \&\f(CW\*(C`VAL\*(C'\fR. .Sp \&\f(CW\*(C`can\*(C'\fR cannot know whether an object will be able to provide a method through \&\s-1AUTOLOAD\s0 (unless the object's class has overriden \f(CW\*(C`can\*(C'\fR appropriately), so a return value of \fIundef\fR does not necessarily mean the object will not be able to handle the method call. To get around this some module authors use a forward declaration (see perlsub) for methods they will handle via \s-1AUTOLOAD\s0. For such 'dummy' subs, \f(CW\*(C`can\*(C'\fR will still return a code reference, which, when called, will fall through to the \s-1AUTOLOAD\s0. If no suitable \s-1AUTOLOAD\s0 is provided, calling the coderef will cause an error. .Sp You may call \f(CW\*(C`can\*(C'\fR as a class (static) method or an object method. .Sp Again, the same rule about having a valid invocant applies \*(-- use an \f(CW\*(C`eval\*(C'\fR block or \f(CW\*(C`blessed\*(C'\fR if you need to be extra paranoid. .ie n .IP """VERSION ( [ REQUIRE ] )""" 4 .el .IP "\f(CWVERSION ( [ REQUIRE ] )\fR" 4 .IX Item "VERSION ( [ REQUIRE ] )" \&\f(CW\*(C`VERSION\*(C'\fR will return the value of the variable \f(CW$VERSION\fR in the package the object is blessed into. If \f(CW\*(C`REQUIRE\*(C'\fR is given then it will do a comparison and die if the package version is not greater than or equal to \f(CW\*(C`REQUIRE\*(C'\fR. .Sp \&\f(CW\*(C`VERSION\*(C'\fR can be called as either a class (static) method or an object method. .SH "EXPORTS" .IX Header "EXPORTS" None by default. .PP You may request the import of three functions (\f(CW\*(C`isa\*(C'\fR, \f(CW\*(C`can\*(C'\fR, and \f(CW\*(C`VERSION\*(C'\fR), however it is usually harmful to do so. Please don't do this in new code. .PP For example, previous versions of this documentation suggested using \f(CW\*(C`isa\*(C'\fR as a function to determine the type of a reference: .PP .Vb 1 \& use UNIVERSAL \*(Aqisa\*(Aq; \& \& $yes = isa $h, "HASH"; \& $yes = isa "Foo", "Bar"; .Ve .PP The problem is that this code will \fInever\fR call an overridden \f(CW\*(C`isa\*(C'\fR method in any class. Instead, use \f(CW\*(C`reftype\*(C'\fR from Scalar::Util for the first case: .PP .Vb 1 \& use Scalar::Util \*(Aqreftype\*(Aq; \& \& $yes = reftype( $h ) eq "HASH"; .Ve .PP and the method form of \f(CW\*(C`isa\*(C'\fR for the second: .PP .Vb 1 \& $yes = Foo\->isa("Bar"); .Ve