How can I determine the type of a blessed reference in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:13:54Z http://stackoverflow.com/feeds/question/11085 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11085/how-can-i-determine-the-type-of-a-blessed-reference-in-perl 4 How can I determine the type of a blessed reference in Perl? Ryan O 2008-08-14T14:11:42Z 2009-07-15T04:33:27Z <p>In Perl, an object is just a reference to any of the basic Perl data types that has been blessed into a particular class. When you use the ref() function on an unblessed reference, you are told what data type the reference points to. However, when you call ref() on a blessed reference, you are returned the name of the package that reference has been blessed into. </p> <p>I want to know the actual underlying type of the blessed reference. How can I determine this?</p> http://stackoverflow.com/questions/11085/how-can-i-determine-the-type-of-a-blessed-reference-in-perl/11103#11103 6 Answer by Ryan O for How can I determine the type of a blessed reference in Perl? Ryan O 2008-08-14T14:26:43Z 2008-08-14T14:26:43Z <p>Scalar::Util::reftype</p> http://stackoverflow.com/questions/11085/how-can-i-determine-the-type-of-a-blessed-reference-in-perl/42237#42237 1 Answer by Jagmal for How can I determine the type of a blessed reference in Perl? Jagmal 2008-09-03T18:09:51Z 2008-11-28T18:33:04Z <p>And my first thought on this was: "Objects in Perl are always hash refs, so what the hack?"</p> <p>But, Scalar::Util::reftype is the answer. Thanks for putting the question here.</p> <p>Here is a code snippet to prove this.. (in case it is of any use to anyone).</p> <pre> $> perl -e 'use strict; use warnings "all"; my $x = [1]; bless ($x, "ABC::Def"); use Data::Dumper; print Dumper $x; print ref($x) . "\n"; use Scalar::Util "reftype"; print reftype($x) . "\n"'` </pre> <p>Output:</p> <pre> $VAR1 = bless( [ 1 ], 'ABC::Def' ); ABC::Def ARRAY </pre> http://stackoverflow.com/questions/11085/how-can-i-determine-the-type-of-a-blessed-reference-in-perl/45629#45629 3 Answer by Leon Timmermans for How can I determine the type of a blessed reference in Perl? Leon Timmermans 2008-09-05T12:18:09Z 2008-09-05T12:18:09Z <p>You probably shouldn't do this. The underlying type of an object is an implementation detail you shouldn't mess with. Why would you want to know this?</p> http://stackoverflow.com/questions/11085/how-can-i-determine-the-type-of-a-blessed-reference-in-perl/64160#64160 5 Answer by Michael Carman for How can I determine the type of a blessed reference in Perl? Michael Carman 2008-09-15T15:54:08Z 2009-07-15T04:33:27Z <p><code>Scalar::Util::reftype()</code> is the cleanest solution. The <a href="http://search.cpan.org/dist/Scalar-List-Utils/lib/Scalar/Util.pm" rel="nofollow"><code>Scalar::Util</code></a> module was added to the Perl core in version 5.7 but is available for older versions (5.004 or later) from CPAN.</p> <p>You can also probe with <code>UNIVERSAL::isa()</code>:</p> <pre><code>$x-&gt;isa('HASH') # if $x is known to be an object UNIVERSAL::isa($x, 'HASH') # if $x might not be an object or reference </code></pre> <p>Obviously, you'd also have to check for <code>ARRAY</code> and <code>SCALAR</code> types. The UNIVERSAL module (which serves as the base class for all objects) has been part of the core since Perl 5.003.</p> <p>Another way -- easy but a little dirty -- is to stringify the reference. Assuming that the class hasn't overloaded stringification you'll get back something resembling <code>Class=HASH(0x1234ABCD)</code>, which you can parse to extract the underlying data type:</p> <pre><code>my $type = ($object =~ /=(.+)\(0x[0-9a-f]+\)$/i); </code></pre>