On Fri, 12 Aug 2005 12:04:34 -0500
Boysenberry Payne <[EMAIL PROTECTED]> wrote:
> I a module written in an object orient syntax that does this:
>
> sub new {
>
> my $class = shift;
> my $this = {};
> bless( $this, $class );
> $this->_init( @_ );
>
> return $
I a module written in an object orient syntax that does this:
sub new {
my $class = shift;
my $this = {};
bless( $this, $class );
$this->_init( @_ );
return $this;
}
Is $this considered Global (i.e. am I going to run into the scoping
issues
of