Help for this page

Select Code to Download


  1. or download this
    my $o = Child->new;
    print ref($o);  #Child
    ...
    my $method = 'testSign';
    my $code = $o->can($method);
    print $code; # CODE(0x20d5b94)
    
  2. or download this
    $o->$method()
    
  3. or download this
    $o->$code()
    
  4. or download this
    perl -v  #AS-635
    
  5. or download this
        my %_init_mems = (
            Password    =>     \&testPassword,
    ...
            Name        =>    \&testNameX2,
            Titel        =>    \&testStrX,
        );