Hi Monks, I must be missing something but can't see what it is. I'm creating what is essentially a singleton class. These are the two commands I am running on the singleton class.
Encoder::Config::set_config_file($config_file); my $config_obj = Encoder::Config::get_instance;
The code (incomplete) it is calling is below.
package Encoder::Config; my $global_config_file; my $called; my $instance = undef; sub get_instance { my $default_config_file = '../etc/system.ini'; return $instance if defined $instance; $instance = {}; bless $instance; if ($global_config_file) { $instance->load_config($global_config_file); } else { $instance->load_config($default_config_file); } return $instance; } sub set_config_file { $global_config_file = shift; return if $called; $called = 1; }
What's odd is that defined $instance in the get_instance sub always returns true. I went through the debugger, and sure enough, as soon as I enter get_instance my global $instance variable seems to be a hash. Any feedback is greatly appreciated

In reply to Global and autovivification? by kalium

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.