in reply to Re^2: Would someone mind helping me understand this Perl OO code?
in thread Would someone mind helping me understand this Perl OO code?
is basically the same asNode->new($ip, $mac_address, $machine);
The main difference is that it checks the parent classes for new if sub Node::new doesn't exist.Node::new('Node', $ip, $mac_address, $machine);
|
|---|