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