Simple and efficient solution:

Make one class superclass of all your othe classes. Let's call it My::Object. All your other classes will inherit from it. Place every method, that sould be 'universaly inherited' in this superclass. If you need 'global' variables, make them static variables of class My::Object. It looks like this:

package My::Object; use vars qw($global1 $global2); sub global1 { $global1 } sub global2 { $global2 } sub globalMethod { ... } package My::SomeClass; use base qw(My::Object); package main; my $g1 = My::Object->global1; $any_my_object->globalMethod();
Note1: It is VERY bad to mess up with 'magic' classes like UNIVERSAL is. Not because it won't work, but because it will look bad. And if it will look bad, it will be unreadable. Thik about hubris. A year after you write it you will not be able to understand how it works.

Note2: Avoid 'global' and even 'class static' variables whenever you can. They will make your life a real pain in long-term development. Every one of them. Use of global variable of any kind can be avoided by careful object design of application. As you are rewriting your application, you should be aware of how it works, so good desing sould be your primary aim here.


In reply to Re: how to make a universally inherited method? by gildir
in thread how to make a universally inherited method? by exphysicist

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.