fattahsafa has asked for the wisdom of the Perl Monks concerning the following question:
Now, what should I use in place of <QUESTION> ? Another thing, how should I send a value for Array0? by reference of by value? Thanks,sub new { my $class = shift; my $self = { _DataMember0 => shift, _DataMember1 => shift, _Array0 => shift, _Array1 => shift, }; bless $self, $class; } sub get_DataMember0 { my ($self) = @_; return $self->{_TestCaseDataFiles}; } sub get__Array0 { my ($self) = @_; return <QUESTION> }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Array as Object Data Member
by stevieb (Canon) on Dec 16, 2015 at 20:00 UTC |