Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How exactly can I pass both scalar variables and array variables to a subroutine in perl?

 my $currVal = 1; my $currValTwo = 1;
 my @currArray = ('one','two','three');
 my @currArrayTwo =('one','two','three');

 &mysub($currVal, $currValTwo,\@currArray, \@currArrayTwo);

 sub mysub() {

     # that doesn't work for the array as I only get the first element of the array
     my($inVal, $inValTwo, @inArray, @inArrayTwo) = @_;
 }
share|improve this question
Which array, you are using two? – Greg Jun 9 '11 at 14:22
It happened with both but Blagovest answer fixed it! – user391986 Jun 9 '11 at 14:47

3 Answers

up vote 12 down vote accepted

You need to fetch them as references because you've already passed them as references (by using the \ operator):

my($inVal, $inValTwo, $inArray, $inArrayTwo) = @_;

and then use the references as arrays:

@{$inArray}
share|improve this answer

You pass the arguments as references, so you need to dereference them to use the values. Be careful about whether you want to change the original array or not.

sub mysub {
    my($inVal, $inValTwo, $inArray, $inArrayTwo) = @_;
    @{$inArrayTwo} = ('five','six','seven');
}

This will change the original @currArrayTwo, which might not be what you want.

sub mysub {
    my($inVal, $inValTwo, $inArray, $inArrayTwo) = @_;
    my @ATwo = @{$inArrayTwo};
    @ATwo = ('five','six','seven');
}

This will only copy the values and leave the original array intact.

Also, you do not need the ampersand in front of the sub name, from perldoc perlsub:

If a subroutine is called using the & form, the argument list is optional, and if omitted, no @_ array is set up for the subroutine: the @_ array at the time of the call is visible to subroutine instead. This is an efficiency mechanism that new users may wish to avoid.

You do not need empty parens after your sub declaration. Those are used to set up prototypes, which is something you do not need to do, unless you really want to.

share|improve this answer
Great explanation thank you! – user391986 Jun 9 '11 at 15:17
@user391986 You're welcome! – TLP Jun 9 '11 at 15:46
Any idea how I can pass an XML::Writer by reference"? How would I dereference it in the subroutine? – user391986 Jun 9 '11 at 18:58
I am not familiar with that module, but I would say any object gets passed with a scalar value. – TLP Jun 9 '11 at 20:29

so, for example: this is a using statement to serach something in array

use List::Util qw(first);

this is the sub declaration:

sub GetIndex($$$);

this is the call to the sub (last parm is: default index value to give back if not found)

$searchedIndex=GetIndex(\@theArr, "valuesearched",1); 

this is the routine:

sub GetIndex($$$)
{

  my $inArray=shift ;
  my @theArray= @{$inArray};
  my $searchedTag= shift;
  my $defaultVal= shift;

  my $retVal = first { $theArray[$_] eq $searchedTag} 0 .. $#theArray;
  if ((! defined $retVal)|| ($retVal<0)||($retVal>@theArray))
  {
     $retVal = $defaultVal; 
  }
  return  $retVal; 
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.