• 使用 declare -A(declare 的用法请使用 help 进行查看,help declare) 进行声明关联数组变量;

    $ declare -A fruits_price
    $ fruits_price=([apple]='$100' [orange]='$150')
  • 列出关联数组的索引(也就是 key):

    $ echo ${!fruits_price[*]}
    $ echo ${!fruits_price[@]}
posted on 2018-05-06 19:42  未雨愁眸  阅读(681)  评论(0编辑  收藏  举报