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

📄 base.al

📁 美国CMU大学开发的操作系统健壮性评测软件
💻 AL
字号:
# NOTE: Derived from ./blib/lib/URI/URL.pm.  Changes made here will be lost.package URI::URL;# Access some attributes of a URL object:sub base {    my $self = shift;    my $base  = $self->{'_base'};    if (@_) { # set	my $new_base = shift;	$new_base = $new_base->abs if ref($new_base);  # unsure absoluteness	$self->{_base} = $new_base;    }    return unless defined wantarray;    # The base attribute supports 'lazy' conversion from URL strings    # to URL objects. Strings may be stored but when a string is    # fetched it will automatically be converted to a URL object.    # The main benefit is to make it much cheaper to say:    #   new URI::URL $random_url_string, 'http:'    if (defined($base) && !ref($base)) {	$base = new URI::URL $base;	$self->_elem('_base', $base); # set new object    }    $base;}1;

⌨️ 快捷键说明

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