Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: oop, variable that counts the number of objects created

by choroba (Cardinal)
on Jul 30, 2020 at 07:25 UTC ( [id://11120051]=note: print w/replies, xml ) Need Help??


in reply to oop, variable that counts the number of objects created

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]

Replies are listed 'Best First'.
Re^2: oop, variable that counts the number of objects created
by bliako (Monsignor) on Jul 30, 2020 at 09:55 UTC

    the only problem I see with this (and the other similar) is that it associates the count decrement with DESTROY which assumes "car-life" and "object-life" are the same but may not be.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (5)
As of 2024-04-23 07:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found