This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.h: Fold 2 ANYOF flags into a single one
[perl5.git] / lib / UNIVERSAL.pm
CommitLineData
def3c102 1package UNIVERSAL;
2
cb0fc6b2 3our $VERSION = '1.13';
b75c8c73 4
84902520 5# UNIVERSAL should not contain any extra subs/methods beyond those
1178d2cf
DIM
6# that it exists to define. The existence of import() below is a historical
7# accident that can't be fixed without breaking code.
def3c102 8
2bfd5681 9# Make sure that even though the import method is called, it doesn't do
71ccbdc2 10# anything unless called on UNIVERSAL.
2bfd5681
MS
11sub import {
12 return unless $_[0] eq __PACKAGE__;
252143cd 13 return unless @_ > 1;
1178d2cf
DIM
14 require Carp;
15 Carp::croak("UNIVERSAL does not export anything");
2bfd5681
MS
16}
17
def3c102 181;
19__END__
20
21=head1 NAME
22
23UNIVERSAL - base class for ALL classes (blessed references)
24
25=head1 SYNOPSIS
26
7d1bbbe8 27 $is_io = $fd->isa("IO::Handle");
28 $is_io = Class->isa("IO::Handle");
def3c102 29
7d1bbbe8 30 $does_log = $obj->DOES("Logger");
31 $does_log = Class->DOES("Logger");
ea8fae29 32
7d1bbbe8 33 $sub = $obj->can("print");
34 $sub = Class->can("print");
35
36 $sub = eval { $ref->can("fandango") };
37 $ver = $obj->VERSION;
71ccbdc2 38
39 # but never do this!
7d1bbbe8 40 $is_io = UNIVERSAL::isa($fd, "IO::Handle");
41 $sub = UNIVERSAL::can($obj, "print");
84902520 42
def3c102 43=head1 DESCRIPTION
44
71ccbdc2 45C<UNIVERSAL> is the base class from which all blessed references inherit.
46See L<perlobj>.
def3c102 47
71ccbdc2 48C<UNIVERSAL> provides the following methods:
def3c102 49
50=over 4
51
a2b59c1f 52=item C<< $obj->isa( TYPE ) >>
ea8fae29 53
71ccbdc2 54=item C<< CLASS->isa( TYPE ) >>
ea8fae29 55
71ccbdc2 56=item C<< eval { VAL->isa( TYPE ) } >>
ea8fae29 57
a2b59c1f
CW
58Where
59
60=over 4
61
62=item C<TYPE>
63
64is a package name
65
66=item C<$obj>
67
003db2bd 68is a blessed reference or a package name
a2b59c1f
CW
69
70=item C<CLASS>
71
72is a package name
73
74=item C<VAL>
75
76is any of the above or an unblessed reference
77
78=back
79
80When used as an instance or class method (C<< $obj->isa( TYPE ) >>),
81C<isa> returns I<true> if $obj is blessed into package C<TYPE> or
82inherits from package C<TYPE>.
83
71ccbdc2 84When used as a class method (C<< CLASS->isa( TYPE ) >>, sometimes
a2b59c1f
CW
85referred to as a static method), C<isa> returns I<true> if C<CLASS>
86inherits from (or is itself) the name of the package C<TYPE> or
87inherits from package C<TYPE>.
ea8fae29 88
71ccbdc2 89If you're not sure what you have (the C<VAL> case), wrap the method call in an
90C<eval> block to catch the exception if C<VAL> is undefined.
def3c102 91
71ccbdc2 92If you want to be sure that you're calling C<isa> as a method, not a class,
98dc9551 93check the invocand with C<blessed> from L<Scalar::Util> first:
def3c102 94
71ccbdc2 95 use Scalar::Util 'blessed';
def3c102 96
e2af7601 97 if ( blessed( $obj ) && $obj->isa("Some::Class") ) {
71ccbdc2 98 ...
99 }
def3c102 100
7d1bbbe8 101=item C<< $obj->DOES( ROLE ) >>
102
103=item C<< CLASS->DOES( ROLE ) >>
104
105C<DOES> checks if the object or class performs the role C<ROLE>. A role is a
106named group of specific behavior (often methods of particular names and
107signatures), similar to a class, but not necessarily a complete class by
108itself. For example, logging or serialization may be roles.
109
110C<DOES> and C<isa> are similar, in that if either is true, you know that the
111object or class on which you call the method can perform specific behavior.
112However, C<DOES> is different from C<isa> in that it does not care I<how> the
98dc9551 113invocand performs the operations, merely that it does. (C<isa> of course
7d1bbbe8 114mandates an inheritance relationship. Other relationships include aggregation,
115delegation, and mocking.)
116
bcb8f0e8
RS
117By default, classes in Perl only perform the C<UNIVERSAL> role, as well as the
118role of all classes in their inheritance. In other words, by default C<DOES>
119responds identically to C<isa>.
7d1bbbe8 120
121There is a relationship between roles and classes, as each class implies the
122existence of a role of the same name. There is also a relationship between
123inheritance and roles, in that a subclass that inherits from an ancestor class
124implicitly performs any roles its parent performs. Thus you can use C<DOES> in
125place of C<isa> safely, as it will return true in all places where C<isa> will
126return true (provided that any overridden C<DOES> I<and> C<isa> methods behave
127appropriately).
128
a2b59c1f
CW
129=item C<< $obj->can( METHOD ) >>
130
131=item C<< CLASS->can( METHOD ) >>
132
71ccbdc2 133=item C<< eval { VAL->can( METHOD ) } >>
ea8fae29 134
71ccbdc2 135C<can> checks if the object or class has a method called C<METHOD>. If it does,
136then it returns a reference to the sub. If it does not, then it returns
137I<undef>. This includes methods inherited or imported by C<$obj>, C<CLASS>, or
ea8fae29 138C<VAL>.
def3c102 139
71ccbdc2 140C<can> cannot know whether an object will be able to provide a method through
fb78fdcd 141AUTOLOAD (unless the object's class has overridden C<can> appropriately), so a
71ccbdc2 142return value of I<undef> does not necessarily mean the object will not be able
143to handle the method call. To get around this some module authors use a forward
144declaration (see L<perlsub>) for methods they will handle via AUTOLOAD. For
145such 'dummy' subs, C<can> will still return a code reference, which, when
146called, will fall through to the AUTOLOAD. If no suitable AUTOLOAD is provided,
147calling the coderef will cause an error.
04b85669 148
71ccbdc2 149You may call C<can> as a class (static) method or an object method.
ea8fae29 150
98dc9551 151Again, the same rule about having a valid invocand applies -- use an C<eval>
71ccbdc2 152block or C<blessed> if you need to be extra paranoid.
def3c102 153
a2b59c1f 154=item C<VERSION ( [ REQUIRE ] )>
def3c102 155
156C<VERSION> will return the value of the variable C<$VERSION> in the
157package the object is blessed into. If C<REQUIRE> is given then
158it will do a comparison and die if the package version is not
e937c40d
FC
159greater than or equal to C<REQUIRE>, or if either C<$VERSION> or C<REQUIRE>
160is not a "lax" version number (as defined by the L<version> module).
def3c102 161
a3e88ad7
JP
162The return from C<VERSION> will actually be the stringified version object
163using the package C<$VERSION> scalar, which is guaranteed to be equivalent
164but may not be precisely the contents of the C<$VERSION> scalar. If you want
165the actual contents of C<$VERSION>, use C<$CLASS::VERSION> instead.
166
71ccbdc2 167C<VERSION> can be called as either a class (static) method or an object
168method.
a66bc3b0 169
def3c102 170=back
171
ba593fa9
RS
172=head1 WARNINGS
173
174B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
175C<isa> uses a very similar method and cache-ing strategy. This may cause
176strange effects if the Perl code dynamically changes @ISA in any package.
177
178You may add other methods to the UNIVERSAL class via Perl or XS code.
179You do not need to C<use UNIVERSAL> to make these methods
180available to your program (and you should not do so).
181
a2b59c1f 182=head1 EXPORTS
84902520 183
1178d2cf 184None.
84902520 185
1178d2cf 186Previous versions of this documentation suggested using C<isa> as
71ccbdc2 187a function to determine the type of a reference:
188
1b3ab82c
KE
189 $yes = UNIVERSAL::isa($h, "HASH");
190 $yes = UNIVERSAL::isa("Foo", "Bar");
71ccbdc2 191
1178d2cf 192The problem is that this code would I<never> call an overridden C<isa> method in
71ccbdc2 193any class. Instead, use C<reftype> from L<Scalar::Util> for the first case:
194
195 use Scalar::Util 'reftype';
196
197 $yes = reftype( $h ) eq "HASH";
198
199and the method form of C<isa> for the second:
200
201 $yes = Foo->isa("Bar");
84902520 202
def3c102 203=cut