Perl Super-Methods
Published on 30 Nov 2007Tags #Perl
When writing object oriented code, you will most certainly have stumbled across the problem of calling super method explicitly. That need might arise if you have overwritten such a method in the inheriting class but now need the functionality of the super method:
$self->SUPER::method()