Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Naming convention for Object Variables

by Abigail-II (Bishop)
on Aug 13, 2002 at 13:59 UTC ( [id://189791]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        sub oogle {
            my $self = shift;
    ...
            # Mark it as very, very, very, do not touch at all private:  
            $self -> {_________________furble} ++;
        }
    
  2. or download this
        sub habar {
            my $self = shift;
            $self -> {_________________furble} = 0;
        }
    
  3. or download this
        package My::Package {
            my %furble;
    ...
                $furble {$self} ++;
            }
        }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://189791]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-03-28 14:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found