描述
此函数将 LIST 中的值推送到列表 ARRAY 的末尾。与 pop 一起使用以实现堆栈。
用法
以下是此函数的简单语法 -
push ARRAY, LIST
返回值
此函数返回新数组中的元素数。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
$, = ",";
@array = ( 1, 2 );
print "Before pushing elements @array \n";
push(@array, (3, 4, 5));
print "After pushing elements @array \n";
执行上述代码时,会产生以下结果 -
Before pushing elements 1 2 After pushing elements 1 2 3 4 5
相关用法
- Perl push()用法及代码示例
- Perl printf用法及代码示例
- Perl print用法及代码示例
- Perl prototype用法及代码示例
- Perl pipe用法及代码示例
- Perl print() and say()用法及代码示例
- Perl pack用法及代码示例
- Perl pos用法及代码示例
- Perl pop用法及代码示例
- Perl prototype()用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
注:本文由纯净天空筛选整理自 Perl push Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。