Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Duh. What am I missing about inherited constructors?

by hossman (Prior)
on Nov 04, 2010 at 18:18 UTC ( [id://869534]=note: print w/replies, xml ) Need Help??


in reply to Duh. What am I missing about inherited constructors?

Ignoring the mistake which you have since fixed, posting a runnable example of your problem is invaluable. At best we can extrapolate what we *thin* you code might look like in a runable form, and try that -- in my case, it works fine...

#!/bin/perl -l use warnings; use strict; package Bar; sub new { print STDERR "Bar'ed"; my $class = shift; my $self = {}; bless $self, $class; } package Foo; use base qw/Bar/; sub new { print STDERR "Foo'ed"; my $class = shift; my $self = $class->SUPER::new(@_); bless $self, $class; return $self; } my $foo = Foo->new; print ref($foo); # gives "Foo"

...Produces...

hossman@bester:~$ perl ~/tmp/monk.pl Foo'ed Bar'ed Foo

Log In?
Username:
Password:

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

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

    No recent polls found