Thread lustige Projekt- und Modulnamen (4 answers)
Opened by lichtkind at 2012-07-22 20:26

topeg
 2012-07-23 10:49
#160143 #160143
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Wenn ich eine Elternklasse habe nenne ich sie häufig "BASE" und wenn darin eine Initialisierungsmethode existiert habe ich sie schon mal _your_base_are_belong_to_us genannt.
Code (perl): (dl )
1
2
3
4
5
6
7
8
use parent "BASE";

new
{
  my $self=$_[0]->SUPER::new();
  $self->_your_base_are_belong_to_us();
  return $self;
}
:-)

View full thread lustige Projekt- und Modulnamen