#!/usr/bin/perl -w
#test the string
print "hello" ." ". "world!\n"; #字串連線
print "hello" x 4 . "\n";
print "ha" x (2+3) . "\n";
print "12ggdd" * 3 ."\n"; #啟用告警時,即#!/usr/bin/perl -w時,程式提示告警資訊.
#計算從1到100的所有奇數相加.
$num=1;
#$sum=0;
while ($num < 100)
print $sum;
#test the list
#print "**********===test the list**********===";
#@lista= (1..100);
#foreach $item (@lista)
#test pop method
print "\n\n";
@arr=5..9;
$fred1=pop(@arr);
$fred2=pop(@arr); #the value of $fred2 is 8.
printf "%s,%s",$fred1,$fred2;
#test push method
print "\n\n";
foreach $item (@arr)
print "\n\n";
push (@arr,10); #push 乙個元素10
push @arr,20; #push 乙個元素20
push @arr ,1..10; #push 乙個元素1..10
foreach $item (@arr)
print "\n\n";
@brr=reverse(@arr);#陣列元素,翻轉.
foreach $item (@brr)
print "\n\n";
@crr=sort(@arr);#陣列元素,排序.
foreach $item (@crr)
print "write some words :\n";
while(chomp($line=)) }
php運算元組
php陣列操作 test01 array a aaaa b bbbb c cccc while list key,value each test01 php陣列操作 array walk 對陣列中的每個成員應用使用者函式 array walk test01,walk test function wa...
js運算元組
1 建立陣列 var array new array var array new array size 指定陣列的長度 var array new array item1,item2 itemn 建立陣列並賦值 2 取值 賦值 var item array index 獲取指定元素的值 array ...
jquery運算元組
sort 是陣列操作的乙個方法,之前簡單的說過一下,並沒有看重,今天用到了就詳細的說一下。先看下面的使用方法 1 arrayobj.sort function arrayobj為目標陣列,function為sort 方法執行的函式,如果不寫這個引數,那麼元素將按照 ascii 字元順序進行公升序排列...