in reply to C-Style Struct?
Always as a alternative, you can searcg modules on CPAN to reach what you want instead of doing it by hand.package C_struct; sub new{ my $self = shift; return bless {'counting_number' => shift, 'name' => shift, 'stuff_list' => shift }, $self; } package main; use Data::Dumper; my $cc = C_struct->new(123,'bb', [1,2,3]); my $dd = C_struct->new(234,'cc', [2,3,4]); print $cc->{name}; print $dd->{name}; print Dumper $dd->{stuff_list}; 1;
UPDATE
modify code to be more intuitive.I am trying to improve my English skills, if you see a mistake please feel free to reply or /msg me a correction
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: C-Style Struct?
by Arunbear (Prior) on Aug 08, 2012 at 17:24 UTC | |
by Anonymous Monk on Aug 08, 2012 at 18:30 UTC | |
by xiaoyafeng (Deacon) on Aug 08, 2012 at 23:57 UTC | |
by Arunbear (Prior) on Aug 09, 2012 at 17:56 UTC | |
by xiaoyafeng (Deacon) on Aug 10, 2012 at 01:11 UTC |