http://www.perlmonks.org?node_id=481654


in reply to Perl Best Practices for naming variables

Without reading the book.
I refuse to append _ref to my refs. Since a real program is much more readable with shorter meaningfull names.
Boris
  • Comment on Re: Perl Best Practices for naming variables

Replies are listed 'Best First'.
Re^2: Perl Best Practices for naming variables
by Happy-the-monk (Canon) on Aug 07, 2005 at 14:07 UTC

    There sure is more than one way to name your references.

    scnr ;-), Sören

      There sure is more than one way to name your references.

      $rsReally = \"yes really"; $raReally = [qw"yes really"]; $rhReally = {qw"yes really"};

        In Perl, the prefixes of sv, av, and hv might be more recognizable. Well, at least for people who have seen discussions that touched on internals that used the standard (and ubiquitous) abbreviations that are used internally.

        At least, I have sometimes used names like $sv_xml when I saw a value in calling out "this is a reference (of this type)" in the variable name.

        - tye