Linux shell 編程(五):數組

來源:互聯網
上載者:User

標籤:array   shell   loop   

數組

數組是有序的元素序列 。若將有限個類型相同的變數的集合命名,那麼這個名稱為數組名。組成數組的各個變數稱為數組的分量,也稱為數組的元素,有時也稱為下標變數。用於區分數組的各個元素的數字編號稱為下標。數組是在程式設計中,為了處理方便, 把具有相同類型的若干元素按無序的形式組織起來的一種形式。這些無序排列的同質資料元素的集合稱為數組。

在shell中數組有兩種類型:

  • 索引數組(indexed arrays)
  • 關聯陣列(associative arrays)
索引數組(indexed arrays)

索引數組使用數字作為下標,下標預設從0開始。

  • 聲明數組:
    [email protected]:~# # 直接聲明[email protected]:~# array=(10 20 30 40 50 60 60 80 90) # 用空格分隔[email protected]:~# # 使用declare[email protected]:~# declare -a arrays # 聲明一個索引數組
關聯陣列(associative arrays)

關聯陣列是一種具有特殊索引方式的數組。不僅可以通過整數來索引它,還可以使用字串或者其他類型的值(除了NULL)來索引它。

  • 數組聲明
# 關聯陣列聲明必須使用declare -A 方式,否則shell會將其認為是索引數組[email protected]:~# declare -A info # 定義一個管理數組[email protected]:~# info[‘name‘]=‘raojinlin‘ # 插入name鍵,賦值[email protected]:~# info[‘age‘]=21[email protected]:~# info[‘obj‘]=‘ops‘[email protected]:~# echo ${info[@]} # 擷取數組raojinlin 21 ops[email protected]:~# 
數組操作
  • 訪問數組

    [email protected]:~# echo ${array[0]} # array[index]10[email protected]:~#  # 使用萬用字元* 或 @ 可以訪問數組中的所有元素[email protected]:~# echo ${array[@]}10 20 30 40 50 60 60 80 90[email protected]:~# echo ${array[*]}10 20 30 40 50 60 60 80 90[email protected]:~# array[0]=10 # 將下標為0的元素賦值為10
  • 數組長度
# 文法:${#數組[@|*]}[email protected]:~# echo ${#array[*]}9[email protected]:~# 
  • 擷取數組下標(鍵)
# 文法:${!數組[@|*]}[email protected]:~# echo ${!info[@]}name age obj[email protected]:~# 
  • 數組遍曆

使用for迴圈可以遍曆數組

[email protected]:~# for var in ${info[@]};do echo $var;doneraojinlin21ops[email protected]:~# 

Linux shell 編程(五):數組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.