描述
此函数取消定义 EXPR 的值。用于标量、列表、散列、函数或类型团。在散列上使用诸如 undef $hash{$key} 之类的语句;实际上将指定键的值设置为未定义的值。
如果要从哈希中删除元素,请使用 delete 函数。
用法
以下是此函数的简单语法 -
undef EXPR undef
返回值
此函数返回 undef。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
$scalar = 10;
@array = (1,2);
print "1 - Value of Scalar is $scalar\n";
print "1 - Value of Array is @array\n";
undef( $scalar );
undef( @array );
print "2 - Value of Scalar is $scalar\n";
print "2 - Value of Array is @array\n";
执行上述代码时,会产生以下结果 -
1 - Value of Scalar is 10 1 - Value of Array is 1 2 2 - Value of Scalar is 2 - Value of Array is Use of uninitialized value $scalar in concatenation (.) or string at main.pl line 12.
相关用法
- Perl unshift()用法及代码示例
- Perl untie用法及代码示例
- Perl unpack用法及代码示例
- Perl unlink用法及代码示例
- Perl unshift用法及代码示例
- Perl utime用法及代码示例
- Perl use用法及代码示例
- Perl umask用法及代码示例
- Perl uc()用法及代码示例
- Perl uc用法及代码示例
- Perl ucfirst用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
注:本文由纯净天空筛选整理自 Perl undef Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。