⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch16.055_prob

📁 Perl Best Practices the source code
💻 055_PROB
字号:
################################################################################ Code fragment (NOT RECOMMENDED) from Chapter 16 of "Perl Best Practices" ####     Copyright (c) O'Reilly & Associates, 2005. All Rights Reserved.      ####  See: http://www.oreilly.com/pub/a/oreilly/ask_tim/2001/codepolicy.html  ################################################################################# Standard modules...use strict;use warnings;use IO::Prompt;use English qw( -no_match_vars );use Data::Alias;use Readonly;package Phonebook;use Class::Std;use Carp;{    my %entries_of : ATTR;     # Any method call is someone's name: store their phone number or get it...    sub AUTOLOAD {        my ($self, $number) = @_;         # Extract get/set mode and person's name from method name...        our $AUTOLOAD;        my ($mode, $name) = $AUTOLOAD =~ m/.* :: ([gs]et)_(.*)/xms            or croak "Can't call $AUTOLOAD on object";         # Update if it's a set_<name> operation...        if ($mode eq 'set') {            croak "Missing argument for set_$name" if @_ == 1;            $entries_of{ident $self}->{$name} = $number;        }         return $entries_of{ident $self}->{$name};    }} # and later... my $lbb = Phonebook->new(); $lbb->set_Jenny(867_5309);$lbb->set_Glenn(736_5000); print $lbb->get_Jenny(), "\n";print $lbb->get_Glenn(), "\n";$lbb->call_Jenny();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -