How can I determine the type of a blessed reference in Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T21:13:54Zhttp://stackoverflow.com/feeds/question/11085http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11085/how-can-i-determine-the-type-of-a-blessed-reference-in-perl4How can I determine the type of a blessed reference in Perl?Ryan O2008-08-14T14:11:42Z2009-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#111036Answer by Ryan O for How can I determine the type of a blessed reference in Perl?Ryan O2008-08-14T14:26:43Z2008-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#422371Answer by Jagmal for How can I determine the type of a blessed reference in Perl?Jagmal2008-09-03T18:09:51Z2008-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#456293Answer by Leon Timmermans for How can I determine the type of a blessed reference in Perl?Leon Timmermans2008-09-05T12:18:09Z2008-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#641605Answer by Michael Carman for How can I determine the type of a blessed reference in Perl?Michael Carman2008-09-15T15:54:08Z2009-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->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>