There is a third string format in which you may see a reference (any reference!) presented: the string interpolation of a "raw" (i.e., un-dereferenced) reference variable. (In this example,  $blessed_ref has been bless-ed by default into the  main package.)

c:\@Work\Perl\monks>perl -wMstrict -le "use Scalar::Util qw(reftype) ;; my $blessed_ref = bless { 'foo' => 'bar' }; my $unblessed_ref = { 'bim' => 'bam' }; ;; print 'ref: ', ref $blessed_ref; print 'Scalar::Util::reftype: ', reftype $blessed_ref; ;; print qq{blessed stringization: $blessed_ref}; print qq{unblessed stringization: $unblessed_ref}; " ref: main Scalar::Util::reftype: HASH blessed stringization: main=HASH(0x1825f6c) unblessed stringization: HASH(0x1826098)
(In this example, I have used the  qq{text} form of the  "text" operator because Windoze uses  " (double-quote) as its command-line delimiter. See Quote and Quote-like Operators and Quote-Like Operators in perlop.)


Give a man a fish:  <%-{-{-{-<


In reply to Re: what is the variable type of $data = { by AnomalousMonk
in thread what is the variable type of $data = { by jimyokl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.