Shell中指令碼變數和函數變數的範圍

來源:互聯網
上載者:User

      在shell中定義函數可以使代碼模組化,便於複用代碼。不過指令碼本身的變數和函數的變數的範圍問題可能令你費解,在這裡梳理一下這個問題。

(1)Shell指令碼中定義的變數是global的,其範圍從被定義的地方開始,到shell結束或被顯示刪除的地方為止。

例1:指令碼變數的範圍
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   echo $v1
   #modify the variable v1
   v1=200
}
#define the variable v1
v1=100
#call the function ltx_func
ltx_func
echo $v1

結果:
100
200
解析:指令碼變數v1的範圍從被定義的地方開始,到shell結束。調用函數ltx_func的地方在變數v1的範圍內,所以能夠訪問並修改變數v1。

(2)Shell函數定義的變數預設是global的,其範圍從“函數被調用時執行變數定義的地方”開始,到shell結束或被顯示刪除處為止。函數定義的變數可以被顯示定義成local的,其範圍局限於函數內。但請注意,函數的參數是local的。

例2:函數定義的global變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   #define the variable v2
   v2=200
}
#call the function ltx_func
ltx_func
echo $v2

結果:
200
解析:函數變數v2預設是global的,其範圍從“函數被調用時執行變數定義的地方”開始,到shell結束為止。注意,不是從定義函數的地方開始,而是從調用函數的地方開始。列印命令在變數v2的範圍內,所以能夠訪問變數v2。

例3:函數定義的local變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   #define the local variable v2
   local v2=200
}
#call the function ltx_func
ltx_func
echo $v2

結果:
(空)
解析:函數變數v2顯示定義為local的,其範圍局限於函數內。列印命令在函數外,不在變數v2的範圍內,所以能夠不能訪問變數v2。

例4:函數參數是local變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   echo "param 1: $1"
}
#call the function ltx_func
ltx_func 100

結果:
100
解析:函數參數是local的,通過位置變數來訪問。列印命令輸出函數的第一個參數。

(3)如果同名,Shell函數定義的local變數會屏蔽指令碼定義的global變數。

例5:同名local變數屏蔽global變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   echo $v1
   #define the local variable v1
   local v1=200
   echo $v1
}
#define the global variable v1
v1=200
#call the function ltx_func
ltx_func
echo $v1

結果:
100
200
100
解析:global變數v1的範圍從被定義的地方開始,到shell結束。調用函數ltx_func的地方在變數v1的範圍內,所以能夠變數v1。函數又定義了同名的local變數v1,同名local變數屏蔽global變數,所以函數第二次列印訪問的是local變數。退出函數後再次列印v1,此時函數定義的local變數已經消失,訪問的是global變數。

      在shell中定義函數可以使代碼模組化,便於複用代碼。不過指令碼本身的變數和函數的變數的範圍問題可能令你費解,在這裡梳理一下這個問題。

(1)Shell指令碼中定義的變數是global的,其範圍從被定義的地方開始,到shell結束或被顯示刪除的地方為止。

例1:指令碼變數的範圍
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   echo $v1
   #modify the variable v1
   v1=200
}
#define the variable v1
v1=100
#call the function ltx_func
ltx_func
echo $v1

結果:
100
200
解析:指令碼變數v1的範圍從被定義的地方開始,到shell結束。調用函數ltx_func的地方在變數v1的範圍內,所以能夠訪問並修改變數v1。

(2)Shell函數定義的變數預設是global的,其範圍從“函數被調用時執行變數定義的地方”開始,到shell結束或被顯示刪除處為止。函數定義的變數可以被顯示定義成local的,其範圍局限於函數內。但請注意,函數的參數是local的。

例2:函數定義的global變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   #define the variable v2
   v2=200
}
#call the function ltx_func
ltx_func
echo $v2

結果:
200
解析:函數變數v2預設是global的,其範圍從“函數被調用時執行變數定義的地方”開始,到shell結束為止。注意,不是從定義函數的地方開始,而是從調用函數的地方開始。列印命令在變數v2的範圍內,所以能夠訪問變數v2。

例3:函數定義的local變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   #define the local variable v2
   local v2=200
}
#call the function ltx_func
ltx_func
echo $v2

結果:
(空)
解析:函數變數v2顯示定義為local的,其範圍局限於函數內。列印命令在函數外,不在變數v2的範圍內,所以能夠不能訪問變數v2。

例4:函數參數是local變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   echo "param 1: $1"
}
#call the function ltx_func
ltx_func 100

結果:
100
解析:函數參數是local的,通過位置變數來訪問。列印命令輸出函數的第一個參數。

(3)如果同名,Shell函數定義的local變數會屏蔽指令碼定義的global變數。

例5:同名local變數屏蔽global變數
#!/bin/bash
#define the function ltx_func
ltx_func()
{
   echo $v1
   #define the local variable v1
   local v1=200
   echo $v1
}
#define the global variable v1
v1=200
#call the function ltx_func
ltx_func
echo $v1

結果:
100
200
100
解析:global變數v1的範圍從被定義的地方開始,到shell結束。調用函數ltx_func的地方在變數v1的範圍內,所以能夠變數v1。函數又定義了同名的local變數v1,同名local變數屏蔽global變數,所以函數第二次列印訪問的是local變數。退出函數後再次列印v1,此時函數定義的local變數已經消失,訪問的是global變數。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.