描述
此函數將 LIST 中的元素按順序放置在 ARRAY 的開頭。這與 shift() 的函數相反。
用法
以下是此函數的簡單語法 -
unshift ARRAY, LIST
返回值
此函數返回 ARRAY 中新元素的數量。
示例
以下是顯示其基本用法的示例代碼 -
#!/usr/bin/perl -w
@array = ( 1, 2, 3, 4);
print "Value of array is @array\n" ;
unshift( @array, 20, 30, 40 );
print "Now value of array is @array\n" ;
執行上述代碼時,會產生以下結果 -
Value of array is 1 2 3 4 Now value of array is 20 30 40 1 2 3 4
相關用法
- Perl unshift()用法及代碼示例
- Perl undef用法及代碼示例
- Perl untie用法及代碼示例
- Perl unpack用法及代碼示例
- Perl unlink用法及代碼示例
- Perl utime用法及代碼示例
- Perl use用法及代碼示例
- Perl umask用法及代碼示例
- Perl uc()用法及代碼示例
- Perl uc用法及代碼示例
- Perl ucfirst用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl kill用法及代碼示例
- Perl chop()用法及代碼示例
- Perl wantarray用法及代碼示例
- Perl gmtime用法及代碼示例
- Perl exists()用法及代碼示例
- Perl split用法及代碼示例
注:本文由純淨天空篩選整理自 Perl unshift Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。