perl--将数据放入列表和数组
从数组中,取出元素。
例子的代码如下咧~~~~
#!/usr/bin/perl
@tree=qw(oak cedar maple apple);
print "$tree[0]\n";
print "$tree[3]\n";
$tree[4]='pine';
print "$tree[4]\n";
print "@tree\n";
数组对应的顺序呢,是从0开始的啦,按照01234的顺序奥,然后中间还可以继续向数组中添加新的元素奥
[root@shangxiantongbu script]# ./shuzu.pl
oak
apple
pine
oak cedar maple apple pine
寻找结尾。
标量上下文,列表上下文。
阅读(1996) | 评论(0) | 转发(0) |