Question : bless perl

ok, i'm in dummy mode at the moment. i'm in need of somwe reminding of whats wrong..

here's my module code:

sub new {

        my $class = shift;
        my $self =
                {
                        test => 'test',
                };
        bless $self, $class;
        return $self;

}

sub getValue {

        my ( $self, $key ) = @_;
        return $self->{'$key'};

}

sub setValue {

        my ( $self, $key, $value ) = @_;
        $self->{'$key'} = $value;

}


here's my script code:

use Web::WebBatch;


my $WebBatch = new Web::WebBatch();
$WebBatch->ExecuteTest();


my $test = $WebBatch->getValue('test');
print "accessor test:$test\n";


$WebBatch->setValue('test', 'insert');
$test = $WebBatch->getValue('test');
print "accessor test:$test\n";




here's my results:

accessor test:
accessor test:insert


why isn't it:
accessor test:test
accessor test:insert

Answer : bless perl

sub getValue {

       my ( $self, $key ) = @_;
       return $self->{'$key'};

}

sub setValue {

       my ( $self, $key, $value ) = @_;
       $self->{'$key'} = $value;

}

Variables don't intepolate in single-quoted strings. Best to just leave the quotes off completely.

sub getValue {

       my ( $self, $key ) = @_;
       return $self->{$key};

}

sub setValue {

       my ( $self, $key, $value ) = @_;
       $self->{$key} = $value;

}
Random Solutions  
  •  Restore of System
  •  searching sentence and replace it in bash script
  •  How do I create a loop to insert all rows of one table to another with stored procedure
  •  T-SQL & Sybase 11.5 ( Incorrect syntax near the keyword 'cursor' )
  •  Flash 8, get/send arguments between SWF using LoadMovieNum
  •  Unable to open device (read failure)! - Epson CX6600
  •  What's The Difference Between Lotus Notes and Relational Database Management System (RDMS)?
  •  Some Messages are getting stuck in the queue and filling up the hard drive with transaction logs. Last Error: 430 4.2.0 STOREDRV.Deliver.Exception<wbr />:MapiExcep<wbr />tionCanNot<wbr />Complete
  •  Why is it i need to select "Replace permissions entries on all child objects with entries shown here that apply to child objects"
  •  Creating a Constant in VBA Which References a Range
  •  
    programming4us programming4us