?? membermixin.pm
字號:
#
# $Id: MemberMixin.pm,v 1.5 1997/12/02 13:22:52 aas Exp $
package LWP::MemberMixin;
=head1 NAME
LWP::MemberMixin - Member access mixin class
=head1 SYNOPSIS
package Foo;
require LWP::MemberMixin;
@ISA=qw(LWP::MemberMixin);
=head1 DESCRIPTION
A mixin class to get methods that provide easy access to member
variables in the %$self.
Ideally there should be better Perl langauge support for this.
There is only one method provided:
=over 4
=item _elem($elem [, $val])
Internal method to get/set the value of member variable
C<$elem>. If C<$val> is defined it is used as the new value
for the member variable. If it is undefined the current
value is not touched. In both cases the previous value of
the member variable is returned.
=back
=cut
sub _elem
{
my($self, $elem, $val) = @_;
my $old = $self->{$elem};
$self->{$elem} = $val if defined $val;
return $old;
}
1;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -