Passing Arrays : Parameter « Subroutine « Perl

Perl
1. Array
2. CGI
3. Class
4. Data Type
5. Database
6. File
7. GUI
8. Hash
9. Language Basics
10. Network
11. Regular Expression
12. Report
13. Statement
14. String
15. Subroutine
16. System Functions
17. Win32
18. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Perl » Subroutine » Parameter 
Passing Arrays
    

#!/usr/bin/perl
use warnings;
use strict;
sub check_same (\@\@);
my @a = (12345);
my @b = (12456);
my @c = (12345);
print "\@a is the same as \@b" if check_same(@a,@b);
print "\@a is the same as \@c" if check_same(@a,@c);
sub check_same (\@\@) {
    my ($ref_one, $ref_two= @_;
    
    return unless @$ref_one == @$ref_two;
    for my $elem (0..$#$ref_one) {
        return unless $ref_one->[$elemeq $ref_two->[$elem];
    }
    
    return 1;
}

   
    
    
    
  
Related examples in the same category
1. Swap array value by using the sub range
2. Pass file handle global reference to a subroutine
3. Pass reference to a subroutine to another subroutine
4. Pass two array reference to a subroutine
5. Passing an array and modifying it,as a reference
6. Passing by reference with pointers
7. Passing References to a Subroutine
8. Passing a range of value to a subroutine
9. Passing array to a subroutine
10. Passing arrays to a function
11. Passing different number of parameter to a subroutine
12. Passing hash to a subroutine
13. Passing parameters to subroutines
14. Passing two values to a subroutine
15. displays all the arguments
16. Using shift(@_) to get value passed into a subroutine
17. shift parameter
18. Subroutine parameter default value
19. output the subroutine arguments using special variable @_
20. Is a parameter defined
21. The loop displays each individual argument
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.