您的位置:首页 > 其它

List and Array in Perl

2013-12-02 16:17 281 查看
scalar ----singular

list && array ------plural

1. A list is an ordered collection of scalars, and the list is the data. Using (1, 2, 3)

2. An array is a variable that contians a list, and the array is the variable. Using ['1', '2'. '3']

Array and list can have any number of elements. The smallest one has no elements and the largest can fill all of the available memory.

Perl's philosophy of " no unnecessary limits".

Using $#array_name as an index.

$array[-1] == $array[$#array]

3. fw shortcut

qw( fred barney betty wilma dino ) == ("fred", "barney", "betty", "wilma", "dino")

4, List assigment:

($fred, $barney)=("fred", "barney")

5, pop and push operations in List:

@array = 5..9;

$fred = pop(@array); #@array=(5.6,7,8)

$fred = pop(@@array); #@array=(5.6,7)

push(@array, 10);# @array =(5,6,7,10)

6. shift and unshift operations:

@array = qw# dino fred barney #;

$m = shift(#@array); # $m gets " dino" and @array now has ("fred", "barney")

shift @array; #@array now is empty

unshift(@array, 5); # @array has one element (5)

7, Interpolating array into list:

@rock = qw{ a b c d }

$mail = "red@rock.cn" #wrong

$mail = "red\@rock.cn"; #right

$mail = 'red@rock.cn' #right
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: