数组的使用总结
Posted chenxiaoyong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组的使用总结相关的知识,希望对你有一定的参考价值。
数组的使用:
[email protected]:~/linux$ array[1]=2
[email protected]:~/linux$ array[2]=3
[email protected]:~/linux$ array[3]=4
[email protected]:~/linux$ echo "${array[*]}"
array[*] 或者array[@] 会将数据元素展示
echo "${#array[*]}"
取得数组元素长度 数组名字前面加个#
${#array_name[n]}
取得数组元素单个元素长度
以上是关于数组的使用总结的主要内容,如果未能解决你的问题,请参考以下文章