Difference between revisions of "PERL/C3/Referencing-and-Dereferencing/English"
(Created page with "'''Title of script''':''' Referencing and Dereferencing in Perl''' '''Author: Nirmala Venkat''' '''Keywords: Scalar References, Array References, Hash References, Dereferenc...") |
Nancyvarkey (Talk | contribs) |
||
Line 18: | Line 18: | ||
Learning objectives | Learning objectives | ||
| style="border:1pt solid #000000;padding:0.097cm;"| In this tutorial we will learn about | | style="border:1pt solid #000000;padding:0.097cm;"| In this tutorial we will learn about | ||
− | * Scalar References | + | * '''Scalar References''' |
− | * Array References | + | * '''Array References''' |
− | * Hash References | + | * '''Hash References''' |
− | * Dereferences and | + | * '''Dereferences''' and |
− | * How to add, remove, access elements of array/hash references | + | * How to add, remove, access '''elements''' of '''array/hash references''' |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Slide 3: | | style="border:1pt solid #000000;padding:0.097cm;"| Slide 3: | ||
Line 36: | Line 36: | ||
Pre-requisites | Pre-requisites | ||
| style="border:1pt solid #000000;padding:0.097cm;"| You should have working knowledge of | | style="border:1pt solid #000000;padding:0.097cm;"| You should have working knowledge of | ||
− | * Perl | + | * '''Perl''' programming |
− | * Array functions and | + | * '''Array functions''' and |
− | * Hash functions. | + | * '''Hash functions'''. |
− | If not, then go through the relevant''' Perl''' | + | If not, then go through the relevant''' Perl''' tutorials on this website. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Slide 5: | | style="border:1pt solid #000000;padding:0.097cm;"| Slide 5: | ||
Line 46: | Line 46: | ||
| style="border:1pt solid #000000;padding:0.097cm;"| What is''' References'''? | | style="border:1pt solid #000000;padding:0.097cm;"| What is''' References'''? | ||
− | A''' reference''' is a pointer or an address to a variable, array, hash or a subroutine. | + | A''' reference''' is a '''pointer''' or an '''address''' to '''a variable, array, hash''' or a '''subroutine'''. |
It does not contain data directly. | It does not contain data directly. | ||
− | '''Reference''' is an easy, compact scalar value. | + | '''Reference''' is an easy, compact '''scalar''' value. |
|- | |- | ||
Line 57: | Line 57: | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| '''Reference''' will improve the performance of '''Perl''' code when you pass or return large data structures. | + | | style="border:1pt solid #000000;padding:0.097cm;"| |
+ | *'''Reference''' will improve the performance of '''Perl''' code when you pass or return large data structures. | ||
− | It saves memory as it passes a''' reference''' to a subroutine rather than passing a value. | + | *It saves memory as it passes a''' reference''' to a '''subroutine''' rather than passing a value. |
− | Easy to manage complicated Perl data structures. | + | *Easy to manage complicated '''Perl''' data structures. |
|- | |- | ||
Line 94: | Line 95: | ||
$deptRef = \%dept<nowiki>;</nowiki> | $deptRef = \%dept<nowiki>;</nowiki> | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| We can create a''' reference''' for any variable, subroutine or value, by putting a | + | | style="border:1pt solid #000000;padding:0.097cm;"| We can create a''' reference''' for any '''variable, subroutine''' or value, by putting a '''backslash (\)''' in front of it. |
− | A''' scalar variable''' is''' referenced''' by backslash and '''dollar sign''' ($) as shown here. | + | A''' scalar variable''' is''' referenced''' by '''backslash''' and '''dollar sign''' ($) as shown here. |
− | An''' array variable''' is''' referenced''' by backslash and '''at the rate(@)''' symbol. | + | An''' array variable''' is''' referenced''' by '''backslash''' and '''at the rate(@)''' symbol. |
− | A''' hash variable''' is''' referenced''' by backslash and '''percentage(%)''' symbol as shown in the example here. | + | A''' hash variable''' is''' referenced''' by '''backslash''' and '''percentage(%)''' symbol as shown in the example here. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Slide 8: | | style="border:1pt solid #000000;padding:0.097cm;"| Slide 8: | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| | + | | style="border:1pt solid #000000;padding:0.097cm;"| what is '''dereference'''? |
− | ''' | + | *When a '''reference''' is''' dereferenced''', the actual value is returned. |
− | And preceding the left curly bracket with a character denoting the type of''' reference''' it is. | + | *'''Dereference''' is done by enclosing the''' reference''' variable within curly brackets. |
+ | |||
+ | *And preceding the left curly bracket with a character denoting the type of''' reference''' it is. | ||
|- | |- | ||
Line 118: | Line 121: | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Slide 9: | | style="border:1pt solid #000000;padding:0.097cm;"| Slide 9: | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| A''' scalar variable''' is dereferenced by '''dollar sign ($)''' and curly brackets. | + | | style="border:1pt solid #000000;padding:0.097cm;"| |
+ | *A''' scalar variable''' is dereferenced by '''dollar sign ($)''' and curly brackets. | ||
− | An''' array variable''' is dereferenced by '''at the rate (@)''' symbol and curly brackets. | + | *An''' array variable''' is dereferenced by '''at the rate (@)''' symbol and curly brackets. |
− | A''' hash variable''' is dereferenced by '''percentage(%)''' symbol and curly brackets. | + | *A''' hash variable''' is dereferenced by '''percentage(%)''' symbol and curly brackets. |
|- | |- | ||
Line 136: | Line 140: | ||
'''gedit scalarRef.pl &''' | '''gedit scalarRef.pl &''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| Open the terminal and type''' gedit scalarRef dot pl ampersand''' | + | | style="border:1pt solid #000000;padding:0.097cm;"| Open the '''terminal''' and type''' gedit scalarRef dot pl ampersand''' |
− | and press Enter. | + | and press '''Enter'''. |
|- | |- | ||
Line 164: | Line 168: | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Let me explain the code. | | style="border:1pt solid #000000;padding:0.097cm;"| Let me explain the code. | ||
− | First line declares a | + | First line declares a '''scalar variable '$a'''' and initialized to 10. |
As mentioned earlier, a '''scalar variable''' is''' referenced''' by '''backslash''' and '''dollar sign ($)''' | As mentioned earlier, a '''scalar variable''' is''' referenced''' by '''backslash''' and '''dollar sign ($)''' | ||
− | This line will print memory address of the '''variable''' that is created as''' reference'''. | + | |
+ | This line will print '''memory address''' of the '''variable''' that is created as''' reference'''. | ||
+ | |||
To print the actual value, the '''variable''' is''' dereferenced''' by curly brackets preceded by '''$'''. | To print the actual value, the '''variable''' is''' dereferenced''' by curly brackets preceded by '''$'''. | ||
− | '''ref()''' function will return the''' reference''' type such as '''scalar''' or '''array''' or '''hash'''. | + | |
+ | Here'''ref()''' function will return the''' reference''' type such as '''scalar''' or '''array''' or '''hash'''. | ||
|- | |- | ||
Line 201: | Line 208: | ||
The second line returns the actual value 10. | The second line returns the actual value 10. | ||
− | '''Ref() function '''returns 'Scalar' as output. | + | '''Ref() function '''returns ''''Scalar'''' as output. |
|- | |- | ||
Line 217: | Line 224: | ||
'''gedit arrayRef.pl &''' | '''gedit arrayRef.pl &''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| In the terminal, type''' gedit arrayRef dot pl ampersand''' | + | | style="border:1pt solid #000000;padding:0.097cm;"| In the '''terminal''', type''' gedit arrayRef dot pl ampersand''' |
− | and press Enter. | + | and press '''Enter'''. |
|- | |- | ||
Line 245: | Line 252: | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Let me explain the code now. | | style="border:1pt solid #000000;padding:0.097cm;"| Let me explain the code now. | ||
− | Here, in the first line, I have declared an | + | Here, in the first line, I have declared an '''array @color''' and initialised it with three values. |
− | It is''' referenced''' with '''backslash @color''' which is the array name and assigned to''' $colorRef.''' | + | It is''' referenced''' with '''backslash @color''' which is the '''array name''' and assigned to''' $colorRef.''' |
The '''print''' statement will print the''' reference''' value and the''' dereferenced''' value. | The '''print''' statement will print the''' reference''' value and the''' dereferenced''' value. | ||
Line 271: | Line 278: | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Highlight | | style="border:1pt solid #000000;padding:0.097cm;"| Highlight | ||
− | |||
− | |||
− | |||
'''Reference: ARRAY(0x81e4638)''' | '''Reference: ARRAY(0x81e4638)''' | ||
'''Dereferenced: Red Green Yellow''' | '''Dereferenced: Red Green Yellow''' | ||
+ | | style="border:1pt solid #000000;padding:0.097cm;"| The output is displayed as shown here | ||
+ | |||
+ | |||
|- | |- | ||
Line 283: | Line 290: | ||
Highlight the second line | Highlight the second line | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| The first line shows the output of the memory address of the variable that is created as''' reference'''. | + | | style="border:1pt solid #000000;padding:0.097cm;"| The first line shows the output of the '''memory address''' of the variable that is created as''' reference'''. |
The second line shows the actual value that is''' dereferenced'''. | The second line shows the actual value that is''' dereferenced'''. | ||
Line 289: | Line 296: | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| | | style="border:1pt solid #000000;padding:0.097cm;"| | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| Next, we will see how to declare direct or anonymous''' reference''' for an '''array'''. | + | | style="border:1pt solid #000000;padding:0.097cm;"| Next, we will see how to declare '''direct''' or anonymous''' reference''' for an '''array'''. |
Let’s come back to our program. | Let’s come back to our program. | ||
− | I have changed the existing program to show the | + | I have changed the existing program to show the '''direct reference''' for an '''array'''. |
|- | |- | ||
Line 304: | Line 311: | ||
'''print $colorRef -<nowiki>>[1]; </nowiki>''' | '''print $colorRef -<nowiki>>[1]; </nowiki>''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| You can create a | + | | style="border:1pt solid #000000;padding:0.097cm;"| You can create a '''direct reference''' to an''' array''' by using square brackets<nowiki> [] </nowiki>as demonstrated. |
− | Use | + | Use '''arrow operator (->)''' to '''dereference'''. |
− | + | '''print''' statement will print ''''Green'''' as output. | |
− | Here the print statement takes the value of index<nowiki>[1]. </nowiki>i.e '''Green''' in our program. | + | Here the '''print''' statement takes the value of index<nowiki>[1]. </nowiki>i.e '''Green''' in our program. |
|- | |- | ||
Line 318: | Line 325: | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| | | style="border:1pt solid #000000;padding:0.097cm;"| | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| Switch back to the terminal and type | + | | style="border:1pt solid #000000;padding:0.097cm;"| Switch back to the '''terminal''' and type |
'''perl arrayRef dot pl''' | '''perl arrayRef dot pl''' | ||
Line 351: | Line 358: | ||
'''Output: Sunil''' | '''Output: Sunil''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| You can create a | + | | style="border:1pt solid #000000;padding:0.097cm;"| You can create a '''direct reference''' to hash by using curly brackets {} as shown here. |
− | Use | + | Use '''arrow operator (->)''' to dereference it. |
− | “Name” is the hash key. | + | '''“Name”''' is the '''hash key'''. |
− | On executing this block of code, both the print statements will print ''''Sunil'''' as output. | + | On executing this block of code, both the '''print''' statements will print ''''Sunil'''' as output. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| | | style="border:1pt solid #000000;padding:0.097cm;"| | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| Next we will see how to add, remove, access elements to '''array reference''' with a sample program. | + | | style="border:1pt solid #000000;padding:0.097cm;"| Next we will see how to add, remove, access '''elements''' to '''array reference''' with a sample program. |
|- | |- | ||
Line 423: | Line 430: | ||
| style="border:1pt solid #000000;padding:0.097cm;"| The first line initializes an array. | | style="border:1pt solid #000000;padding:0.097cm;"| The first line initializes an array. | ||
− | We have referenced an array with | + | We have '''referenced''' an '''array''' with '''backslash @numarray''' and assigned to''' $ref.''' |
− | |||
− | + | Now, we will see how to access a particular '''element''' from the''' array reference.''' | |
− | And an | + | We need to use the '''array index''' in square brackets<nowiki> “[ ]” </nowiki>to access the particular value. |
+ | |||
+ | And an '''arrow operator (“->”)''' to''' dereference''' it. | ||
The '''print''' statement will print the value of index<nowiki>[0]</nowiki> | The '''print''' statement will print the value of index<nowiki>[0]</nowiki> | ||
− | '''Push function '''adds elements at the last position of an''' array reference.''' | + | |
+ | '''Push function '''adds '''elements''' at the last position of an''' array reference.''' | ||
+ | |||
In our case 5,6,7 is added to at the end of the existing array 1,2,3,4. | In our case 5,6,7 is added to at the end of the existing array 1,2,3,4. | ||
− | ''' | + | This '''print''' statement shows the output after adding to the''' array reference.''' |
+ | |||
'''Pop function '''removes an element from the last position of an''' array reference''' | '''Pop function '''removes an element from the last position of an''' array reference''' | ||
Line 443: | Line 454: | ||
In our example, 7 will be removed from the existing''' array reference.''' | In our example, 7 will be removed from the existing''' array reference.''' | ||
− | ''' | + | '''print '''statement shows the output after deleting from the''' array reference.''' |
|- | |- | ||
Line 471: | Line 482: | ||
'''After deleting :123456''' | '''After deleting :123456''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| The output is displayed as | + | | style="border:1pt solid #000000;padding:0.097cm;"| The output is displayed as shown here |
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| | | style="border:1pt solid #000000;padding:0.097cm;"| | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| Now let us see another sample program to add, remove, and access elements of''' hash reference.''' | + | | style="border:1pt solid #000000;padding:0.097cm;"| Now let us see another sample program to add, remove, and access '''elements''' of''' hash reference.''' |
|- | |- | ||
Line 487: | Line 494: | ||
'''gedit hashRefadd.pl&''' | '''gedit hashRefadd.pl&''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| | + | | style="border:1pt solid #000000;padding:0.097cm;"| In the '''terminal''' and type |
'''gedit hashRefadd dot pl ampersand''' | '''gedit hashRefadd dot pl ampersand''' | ||
+ | and press '''Enter'''. | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.097cm;"| '''Point to the filename hashRefadd.pl in the Titlebar of gedit.''' | | style="border:1pt solid #000000;padding:0.097cm;"| '''Point to the filename hashRefadd.pl in the Titlebar of gedit.''' | ||
Line 533: | Line 541: | ||
'''print "First day temp is: " . ${$weektemp}{monday} . "\n";''' | '''print "First day temp is: " . ${$weektemp}{monday} . "\n";''' | ||
− | | style="border:1pt solid #000000;padding:0.097cm;"| I have declared a | + | | style="border:1pt solid #000000;padding:0.097cm;"| I have declared a '''direct hash reference''' that can be stored in a '''scalar''' variable''' $weektemp.''' |
+ | |||
+ | |||
+ | I have used curly brackets to represent the''' hash reference''' and the '''arrow operator''' to''' dereference'''. | ||
− | |||
This code stores the temperature values from Monday to Friday. | This code stores the temperature values from Monday to Friday. | ||
− | I am using the '''“keys” built-in function''' to loop through the keys of the hash. | + | I am using the '''“keys” built-in function''' to loop through the '''keys''' of the '''hash'''. |
+ | |||
+ | |||
+ | '''print''' statement will print each element of the '''hash'''. | ||
− | |||
− | We can access the particular value of an element as shown here. | + | We can access the particular value of an '''element''' as shown here. |
− | ''' | + | '''print''' statement will print the temperature on Monday. |
|- | |- | ||
Line 555: | Line 567: | ||
| style="border:1pt solid #000000;padding:0.097cm;"| Switch to '''terminal''' and type- | | style="border:1pt solid #000000;padding:0.097cm;"| Switch to '''terminal''' and type- | ||
− | '''perl | + | '''perl hashRefadd dot pl''' |
and press''' Enter '''to see the output. | and press''' Enter '''to see the output. | ||
Line 572: | Line 584: | ||
'''monday: 40''' | '''monday: 40''' | ||
| style="border-top:1pt solid #000000;border-bottom:0.75pt solid #000000;border-left:1pt solid #000000;border-right:1pt solid #000000;padding:0.097cm;"| The '''hash keys '''and '''hash values''' are stored in a random order. | | style="border-top:1pt solid #000000;border-bottom:0.75pt solid #000000;border-left:1pt solid #000000;border-right:1pt solid #000000;padding:0.097cm;"| The '''hash keys '''and '''hash values''' are stored in a random order. | ||
+ | |||
The displayed output is not related to the order in which they were added. | The displayed output is not related to the order in which they were added. | ||
− | |||
|- | |- | ||
Line 596: | Line 608: | ||
| style="border:0.75pt solid #000000;padding:0.106cm;"| In this tutorial, we learnt about: | | style="border:0.75pt solid #000000;padding:0.106cm;"| In this tutorial, we learnt about: | ||
− | * Scalar References | + | * '''Scalar References''' |
− | * Array References | + | * '''Array References''' |
− | * Hash References | + | * '''Hash References''' |
− | * Dereferences and | + | * '''Dereferences''' and |
− | * How to add, remove, access elements of array/hash references with examples. | + | * How to add, remove, access '''elements''' of '''array/hash references''' with examples. |
|- | |- |
Latest revision as of 09:33, 15 July 2015
Title of script: Referencing and Dereferencing in Perl
Author: Nirmala Venkat
Keywords: Scalar References, Array References, Hash References, Dereferences, video tutorial
|
|
Slide 1: | Welcome to the Spoken Tutorial on Referencing and Dereferencing in Perl. |
Slide 2:
Learning objectives |
In this tutorial we will learn about
|
Slide 3:
System Requirements |
For this tutorial, I am using
You can use any text editor of your choice. |
Slide 4:
Pre-requisites |
You should have working knowledge of
If not, then go through the relevant Perl tutorials on this website. |
Slide 5: | What is References?
A reference is a pointer or an address to a variable, array, hash or a subroutine. It does not contain data directly. Reference is an easy, compact scalar value. |
Slide 6:
|
|
Let us learn how to create a reference. | |
Slide 7:
Reference to a scalar variable: ($) $fvalue = 22; $fref = \$fvalue; Reference to a array variable:(@) my @color =('Red', 'Green', 'Yellow'); $colorRef = \@color; Reference to a hash variable:(%) %dept( Name => “Sunil”, Designation => “Manager” ); $deptRef = \%dept; |
We can create a reference for any variable, subroutine or value, by putting a backslash (\) in front of it.
A scalar variable is referenced by backslash and dollar sign ($) as shown here. An array variable is referenced by backslash and at the rate(@) symbol. A hash variable is referenced by backslash and percentage(%) symbol as shown in the example here. |
Slide 8: | what is dereference?
|
Let us see how to dereference variables. | |
Slide 9: |
|
Let us see a simple program for Scalar reference and dereference. | |
Switch to the file in gedit. | Let me open a sample program in gedit Text editor. |
Switch to the Terminal and type
gedit scalarRef.pl & |
Open the terminal and type gedit scalarRef dot pl ampersand
and press Enter. |
Point the cursor to
scalarRef.pl |
Type the following code as displayed on the screen in the scalarRef dot pl file. |
#!/usr/bin/perl
$a =10; # Now $aref has reference to $a scalar. $aref = \$a; # Print value available at the location stored in $aref. print "Value of ‘aref’ is: ",$aref, "\n"; print "Value of a is : ", ${$aref}, "\n"; print "Reference type is : ", ref($aref), "\n"; |
Let me explain the code.
First line declares a scalar variable '$a' and initialized to 10. As mentioned earlier, a scalar variable is referenced by backslash and dollar sign ($)
|
Press Ctrl+S | Now, press Ctrl+S to save the file. |
Let us execute the program. | |
Switch to terminal
perl scalarRef dot pl |
Switch to the terminal and type
perl scalarRef dot pl and press Enter. |
Highlight | The output is displayed as shown.
First line shows the memory address where the value 10 is stored. The second line returns the actual value 10. Ref() function returns 'Scalar' as output. |
Next, let us understand how to create a reference and dereference array by using a sample program. | |
Switch to the file in gedit. | I already have a sample program.
Let me open it in gedit Text editor. |
Switch to the Terminal and type
gedit arrayRef.pl & |
In the terminal, type gedit arrayRef dot pl ampersand
and press Enter. |
Point the cursor
arrayRef.pl |
Type the following code as displayed on the screen in the arrayRef dot pl file. |
Highlight in gedit
#!/usr/bin/perl use strict; use warnings; my @color = ('Red', 'Green', 'Yellow'); my $colorRef =\@color; print "Reference: $colorRef\n"; print "Dereferenced: @{$colorRef}\n"; |
Let me explain the code now.
Here, in the first line, I have declared an array @color and initialised it with three values. It is referenced with backslash @color which is the array name and assigned to $colorRef. The print statement will print the reference value and the dereferenced value. |
Now, press Ctrl+S to save the file. | |
Let us execute the program. | |
Switch to terminal
perl arrayRef dot pl |
Switch back to the terminal and type
perl arrayRef dot pl and press Enter. |
Highlight
Reference: ARRAY(0x81e4638) Dereferenced: Red Green Yellow |
The output is displayed as shown here
|
Highlight first line
Highlight the second line |
The first line shows the output of the memory address of the variable that is created as reference.
The second line shows the actual value that is dereferenced. |
Next, we will see how to declare direct or anonymous reference for an array.
Let’s come back to our program. I have changed the existing program to show the direct reference for an array. | |
Highlight
my $colorRef = ['Red', 'Green', 'Yellow']; Use arrow operator (->) to dereference. print $colorRef ->[1]; |
You can create a direct reference to an array by using square brackets [] as demonstrated.
Use arrow operator (->) to dereference. print statement will print 'Green' as output. Here the print statement takes the value of index[1]. i.e Green in our program. |
Now, press Ctrl+S to save the file. | |
Switch back to the terminal and type
perl arrayRef dot pl and press Enter to execute. | |
Highlight the output | <<PAUSE>> |
I’ll show an example on how to use the direct hash reference in the same code file. | |
Open the gedit and paste the below code. | So, let’s switch to gedit. |
Highlight in gedit
my $deptRef = { Name => “Sunil”, Designation=>“Manager”}; print ${$deptRef} {Name}; or print $deptRef -> {Name}; Output: Sunil |
You can create a direct reference to hash by using curly brackets {} as shown here.
Use arrow operator (->) to dereference it. “Name” is the hash key. On executing this block of code, both the print statements will print 'Sunil' as output. |
Next we will see how to add, remove, access elements to array reference with a sample program. | |
Switch to the file in gedit | I already have a sample program.
Let me open it in gedit Text editor |
Switch to the Terminal and type
gedit arrayRefadd .pl & |
Open the terminal and type gedit arrayRefadd dot pl ampersand and press Enter |
arrayRefadd.pl file is now open in gedit.
Type the code as shown here in your file. | |
Highlight in gedit
#!/usr/bin/perl use strict; use warnings; # initialize an array my @numarray = (1, 2, 3, 4); # get a reference to it my $ref = \@numarray; # Apply Accessing an element print "First element:", $ref->[0], "\n"; # apply push (append a few elements) push(@$ref, 5, 6, 7); # or push @{$ref}, 5, 6, 7; # print the array using the reference print "After adding:" ,@{$ref},"\n"; # it displays 1 2 3 4 5 6 7 # apply pop (remove an element) pop(@$ref); # print the array using the reference print "After deleting :",@{$ref},"\n"; |
The first line initializes an array.
We have referenced an array with backslash @numarray and assigned to $ref.
We need to use the array index in square brackets “[ ]” to access the particular value. And an arrow operator (“->”) to dereference it. The print statement will print the value of index[0]
This print statement shows the output after adding to the array reference.
In our example, 7 will be removed from the existing array reference. print statement shows the output after deleting from the array reference. |
Now, press Ctrl+S to save the file. | |
Let us execute the program. | |
Switch to terminal
perl arrayRefadd dot pl |
Switch back to the terminal and type
perl arrayRefadd dot pl and press Enter. |
Highlight the output:
First element:1 After adding:1234567 After deleting :123456 |
The output is displayed as shown here
|
Now let us see another sample program to add, remove, and access elements of hash reference. | |
Swtich to the Terminal and type
gedit hashRefadd.pl& |
In the terminal and type
gedit hashRefadd dot pl ampersand and press Enter. |
Point to the filename hashRefadd.pl in the Titlebar of gedit. | This will open the file hashRefadd.pl in gedit.
Let me explain the sample program. |
#!/usr/bin/perl
use strict; use warnings; my $weektemp = { monday => 40, tuesday => 38, wednesday => 36, thursday => 39, friday => 41, }; # Print all foreach my $keys(keys %$weektemp) { print "$keys: " . $weektemp->{$keys} . "\n"; } Highlight #Print Temp on monday my $monday_temp= print "First day temp is: " . ${$weektemp}{monday} . "\n"; |
I have declared a direct hash reference that can be stored in a scalar variable $weektemp.
I am using the “keys” built-in function to loop through the keys of the hash.
print statement will print the temperature on Monday. |
Now, save the file. | |
Terminal | Switch to terminal and type-
perl hashRefadd dot pl and press Enter to see the output. |
Highlight output:
friday: 41 wednesday: 36 thursday: 39 tuesday: 38 monday: 40 |
The hash keys and hash values are stored in a random order.
|
With this, we come to the end of this tutorial.
Let us summarize. | |
Slide 10:
Summary
|
In this tutorial, we learnt about:
|
Slide 11:
Assignment |
Here is an assignment for you.
|
Slide 10:
About Spoken Tutorial project
|
The video at the following link summarises the Spoken Tutorial project.
Please download and watch it |
Slide 11:
Spoken Tutorial workshops |
We conduct workshops and give certificates for those who pass our online tests.
For more details, please write to us. |
Slide 12:
Acknowledgement
|
Spoken Tutorial project is funded by NMEICT, MHRD, Government of India.
this link. |
This is Nirmala Venkat from IIT Bombay, signing off. Thanks for watching. |