Hello Monks
I am trying to learn how to build a module. I read chapter 7 in
Perl in a Nutshell and got most of it down. I was able to call my functions and get the desired responses. Then I wanted to try and make a constructor. My program used to return a string, now it returns some type of hash reference. I know I am not making sense, so let me show you what I mean.
#file caller.plx
require mytest;
use strict;
my ($mt) = new mytest;
$mt->put_name("Yoda");
print "The name is ".$mt->get_name()."\n";
######file mytest.pm
use strict;
my $name;
sub new {
my $self = {};
bless $self;
return $self;
}
sub get_name {
if (defined ($name)) {
return $name;
} else {
return "error";
}
}
sub put_name {
$name = "$_[0]";
}
1;
This is what I get
The name is mytest=HASH(0x176f1e8)
What I was expecting was
The name is Yoda
Is there a good source to learn about building constructors?
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.