Get hash value by using the hash reference : Hash Reference « Hash « Perl






Get hash value by using the hash reference

   



#!/usr/bin/perl

use strict;
use warnings;

my %hash = ( A => "AA",
             B => "BB",
             C => "CC",
             D => "DD",
             E => "EE" );

my $hashReference = \%hash;

print( "\$\$hashReference{ A } = $$hashReference{ A }\n" );

   
    
    
  








Related examples in the same category

1.Using references to a hash.
2.Hash References
3.Dereferencing hash
4.Anonymous Hash References
5.Get key value pair through hash reference
6.Reference for hash
7.Hard References-Pointers
8.Using -> opertor with hash reference variable
9.Using each function with hash reference
10.Using keys function with hash reference variable