Help for this page

Select Code to Download


  1. or download this
    Class->can("prefix_$name")->(Class,'first argument');
    $object->can("prefix_$name")->($object,'first argument');
    
  2. or download this
    my $method="prefix_$name";
    Class->$method('first argument');
    $object->$method('first argument');