push ARRAY, LIST |
推压值列表LIST数组的端部上,使用弹出来实现栈。
新的数组中的元素数
试试下面的例子:
#!/usr/bin/perl -w #by www.gitbook.net $, = ","; @array = ( 1, 2 ); print "Before pusing elements @array \n"; push(@array, (3, 4, 5)); print "After pusing elements @array \n";
这将产生以下结果:
Before pusing elements 1 2
After pusing elements 1 2 3 4 5