描述
此函数返回数组中的第一个值,删除它并将数组列表的元素向左移动一个。如果未指定 ARRAY,则在子例程中移动 @_ 数组,否则为 @ARGV。 shift 本质上与 pop 相同,只是从数组的开头而不是结尾获取值。
用法
以下是此函数的简单语法 -
shift ( [ARRAY] ) shift
返回值
如果数组为空,则此函数返回 undef,否则返回数组中的第一个元素。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl
@array = (1..5);
while ($element = shift(@array)) {
print("$element - ");
}
print("The End\n");
执行上述代码时,会产生以下结果 -
1 - 2 - 3 - 4 - 5 - The End
相关用法
- Perl shift()用法及代码示例
- Perl shmctl用法及代码示例
- Perl shmget用法及代码示例
- Perl shmread用法及代码示例
- Perl shmwrite用法及代码示例
- Perl sin()用法及代码示例
- Perl split用法及代码示例
- Perl splice用法及代码示例
- Perl sqrt()用法及代码示例
- Perl setpriority用法及代码示例
- Perl semget用法及代码示例
- Perl send用法及代码示例
- Perl sysread用法及代码示例
- Perl sort()用法及代码示例
- Perl setpwent用法及代码示例
注:本文由纯净天空筛选整理自 Perl shift Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。