以傳值和傳址方式傳遞引數 (Visual Basic)
在 Visual Basic 中,您可利用「傳值」(By Value) 或「傳址」(By Reference) 方式,將引數傳遞至程序。 這個動作稱為「傳遞機制」(Passing Mechanism),它能判斷程序是否能修改在呼叫程式碼中當做引數基礎的程式設計項目。 程序宣告可藉由指定 ByVal (Visual Basic) 或 ByRef (Visual Basic) 關鍵字,決定每一個參數的傳遞機制。
不同處
將引數傳遞到程序時,請注意幾個會相互影響的不同處:
基礎程式設計項目是否為可修改。
引數本身是否為可修改。
引數是否會以傳值或傳址方式傳遞。
引數資料型別是實值型別 (Value Type) 還是參考型別 (Reference Type)。
如需詳細資訊,請參閱可修改引數和不可修改引數之間的差異 (Visual Basic)和以傳值或傳址方式傳遞引數的差別 (Visual Basic)。
選擇傳遞機制
您應該小心選擇每一個引數的傳遞機制。
保護: 在兩種傳遞機制之間作選擇時,最重要的標準就是要變更的呼叫變數之公開方式。 傳遞 ByRef 引數的好處是程序可以透過該引數將值傳回給呼叫程式碼。 傳遞 ByVal 引數的好處是它可以避免變數被程序更改。
效能: 雖然傳遞機制會影響程式碼的效能,但它的差別通常並不顯著。 其中的一個例外是以 ByVal 傳遞的實值型別。 在這種情況下,Visual Basic 會複製引數的整個資料內容。 因此,對於像結構這樣的大型實值型別,以 ByRef 方式傳遞比較有效率。
若為參考型別,則只會複製資料的指標 (32 位元平台上為四個位元組,64 位元平台上則為八個位元組)。 因此,您可以在不損害效能的情況下,以傳值方式傳遞 String 或 Object 型別的引數。
決定傳遞機制
程序宣告可指定每一個參數的傳遞機制。 呼叫程式碼無法覆寫 ByVal 機制,但是如果參數是以 ByRef 宣告,呼叫程式碼可以在呼叫中將引數名稱封閉在括號中,以強制該機制為 ByVal。
Visual Basic 中的預設值是以值來傳遞引數。 您可以使用 ByVal 關鍵字,讓程式碼更具可讀性。 在每一個宣告的參數中包含 ByVal 或 ByRef 關鍵字是很好的程式設計方式。
以傳值方式傳遞引數的時機
如果呼叫程式碼中做為引數基礎的項目是不能修改的項目,請宣告對應參數 ByVal (Visual Basic)。 沒有程式碼能變更不可修改項目的值。
如果基礎項目是可修改的,但您不要程序變更其值,請宣告參數 ByVal。 唯有呼叫程式碼可變更以傳值方式傳遞的可修改項目值。
以傳址方式傳遞引數的時機
如果程序確實需要變更呼叫程式碼中的基礎項目,請宣告對應參數 ByRef (Visual Basic)。
如果須靠程序來變更呼叫程式碼中的基礎項目,才能正確執行程式碼,請宣告參數 ByRef。 如果依傳值方式傳遞,或呼叫程式碼用引號括住引數的方式來覆寫 ByRef 傳遞機制,則程序呼叫可能會產生未預期的結果。
範例
說明
下列範例說明何時以傳值方式傳遞引數,何時以傳址方式傳遞引數。 程序 Calculate 同時擁有 ByVal 和 ByRef。 假設給予利率 rate 與金額 debt,程序的任務是要計算套用利率至原始 debt 後所產生的 debt 新值。 因為 debt 是 ByRef 參數,所以新的總數會反映在對應到 debt 之呼叫程式碼的引數值內。 至於參數 rate 則是 ByVal 參數,因為 Calculate 不應變更其值。
程式碼
Module Module1
Sub Main()
' Two interest rates are declared, one a constant and one a
' variable.
Const highRate As Double = 12.5
Dim lowRate = highRate * 0.6
Dim initialDebt = 4999.99
' Make a copy of the original value of the debt.
Dim debtWithInterest = initialDebt
' Calculate the total debt with the high interest rate applied.
' Argument highRate is a constant, which is appropriate for a
' ByVal parameter. Argument debtWithInterest must be a variable
' because the procedure will change its value to the calculated
' total with interest applied.
Calculate(highRate, debtWithInterest)
' Format the result to represent currency, and display it.
Dim debtString = Format(debtWithInterest, "C")
Console.WriteLine("What I owe with high interest: " & debtString)
' Repeat the process with lowRate. Argument lowRate is not a
' constant, but the ByVal parameter protects it from accidental
' or intentional change by the procedure.
' Set debtWithInterest back to the original value.
debtWithInterest = initialDebt
Calculate(lowRate, debtWithInterest)
debtString = Format(debtWithInterest, "C")
Console.WriteLine("What I owe with low interest: " & debtString)
End Sub
' Parameter rate is a ByVal parameter because the procedure should
' not change the value of the corresponding argument in the
' calling code.
' The calculated value of the debt parameter, however, should be
' reflected in the value of the corresponding argument in the
' calling code. Therefore, it must be declared ByRef.
Sub Calculate(ByVal rate As Double, ByRef debt As Double)
debt = debt + (debt * rate / 100)
End Sub
End Module
請參閱
工作
HOW TO:將引數傳遞至程序 (Visual Basic)
HOW TO:變更程序引數的值 (Visual Basic)
HOW TO:防止程序引數的值變更 (Visual Basic)
HOW TO:強制以傳值方式傳遞引數 (Visual Basic)