Perl push 函数
-
描述
push 此函数将LIST中的值压入列表ARRAY的末尾。与pop一起使用以实现堆栈。 -
句法
以下是此函数的简单语法-push ARRAY, LIST
-
返回值
此函数返回新数组中的元素数。 -
示例
以下是显示其基本用法的示例代码-
尝试一下$, = ","; @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