perl中的函數,傳參

函數參數使用特殊數組@_標明。 獲取函數中的第一個參數$_[0],第二個參數爲$_[1] 舉例以下:web [root@localhost shell]# cat hello.pl #!/usr/bin/perl sub Average{ #獲取全部傳入的參數 $n = scalar(@_); $sum=0; foreach $item (@_){ $sum +=$item; }
相關文章
相關標籤/搜索