Help for this page

Select Code to Download


  1. or download this
    my $method = "foo";
    my $full_method = "set_$method";
    
    my $return_value = $obj->$full_method;
    
  2. or download this
    my $ret_value = $obj->${\"set_$method"};