push
优质
小牛编辑
130浏览
2023-12-01
描述 (Description)
此函数将LIST中的值推送到列表ARRAY的末尾。 与pop一起使用来实现堆栈。
语法 (Syntax)
以下是此函数的简单语法 -
push ARRAY, LIST
返回值 (Return Value)
此函数返回新数组中的元素数。
例子 (Example)
以下是显示其基本用法的示例代码 -
#!/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