加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Learning Perl: 3.1. Accessing Elements of an Array

发布时间:2020-12-15 20:56:56 所属栏目:大数据 来源:网络整理
导读:? 3.1. Accessing Elements of an Array If you've used arrays in another language,you won't be surprised to find Perl provides a way to subscript an array to refer to an element by a numeric index. The array elements are numbered using seque

Previous Page

Next Page

?

3.1. Accessing Elements of an Array

If you've used arrays in another language,you won't be surprised to find Perl provides a way to subscript an array to refer to an element by a numeric index.

The array elements are numbered using sequential integers,beginning at zero and increasing by one for each element,like this:

    $fred[0] = "yabba";
    $fred[1] = "dabba";
    $fred[2] = "doo";

The array name (in this case,"fred") is from a completely separate namespace than scalars use. You could have a scalar variable named $fred in the same program. Perl treats them as different things and doesn't get confused.[*] (Your maintenance programmer might be confused though,so don't capriciously make all of your variable names the same.)

[*] The syntax is always unambiguous; tricky perhaps,but unambiguous.

You can use an array element like $fred[2] in every place[

] where you could use any other scalar variable like $fred. For example,you can get the value from an array element or change that value by the same sorts of expressions we used in the previous chapter:

[

] Well,almost. The most notable exception is that the control variable of a foreach loop,which you'll see later in this chapter,must be a simple scalar. And there are others,like the "indirect object slot" and "indirect filehandle slot" for print and printf.

    print $fred[0];
    $fred[2]  = "diddley";
    $fred[1] .= "whatsis";

Of course,the subscript may be any expression that gives a numeric value. If it's not an integer,it'll automatically be truncated to the next lower integer:

    $number = 2.71828;
    print $fred[$number - 1]; # Same as printing $fred[1]

If the subscript indicates an element that would be beyond the end of the array,the corresponding value will be undef. This is the same as ordinary scalars; if you've never stored a value into the variable,it's undef.

    $blank = $fred[ 142_857 ]; # unused array element gives undef
    $blanc = $mel;             # unused scalar $mel also gives undef

Previous Page

Next Page

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读