Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
You can create a lexical variable in the class that gets incremented in the constructor and decremented in the destructor. A class closure method makes this value accessible from outside. Don't forget to call SUPER::new in child classes.

#!/usr/bin/perl use warnings; use strict; use feature qw{ say }; { package Car; my $count; sub new { my ($class, $name, $price) = @_; my $self = {name => $name, price => $price, speed => 0}; say 'Object car being created:'; say "Name: $name"; say "Price: $price\n"; ++$count; return bless $self, $class } sub speed_up { my ($self, $acc) = @_; return $self->{speed} += $acc } sub slow_down { my ($self, $acc) = @_; return $self->{speed} -= $acc } sub DESTROY { say 'Scrap!'; --$count } sub count { return $count } } { package Car::GeneralMotors::Firebird; use parent -norequire => 'Car'; sub new { my ($class, $price) = @_; $class->SUPER::new('General Motors Firebird', $price); } } my @cars; for (1 .. 10) { push @cars, 'Car'->new('Peel P50', 176_000); } splice @cars, 0, 5; say 'Car'->count; say 'It works for subclasses, too:'; my $f = 'Car::GeneralMotors::Firebird'->new(200_000); say 'Car'->count; undef $f; say 'Car'->count;

map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]

In reply to Re: oop, variable that counts the number of objects created by choroba
in thread oop, variable that counts the number of objects created by Anonymous Monk

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-19 22:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found