Using References |
Top Previous Next |
Using References The syntax for declaring the References and Using them instead of pointers. Preambae:
The different syntaxes used to declare a reference all use the 'Byref' keyword. Since a pointer is a variable, it is possible to modify its contents, and the same pointer can allow successive access to different variables. The association between a reference and the object that it designates is, however, fixed when it is declared.
The 'Byref' keyword indicates a variable that is declared by reference. It is used in three different contexts: - In a procedure signature, to pass an argument by reference (byref parameter). - In a function signature, to return a variable to the caller by reference (byref return). - In the body of the code, to define a reference variable (byref variable).
Table of Contents 1. Passing parameter by reference to procedure (byref parameter) 2. Returning variable by reference from function (byref return) 3. Defining reference variable in code (byref variable) 4. References versus pointers by comparative examples 5. Hacking on usage of references with the additional syntaxes allowed by FreeBASIC
1. Passing parameter by reference to procedure (byref parameter)
▪Syntax of declaration: {Sub|Function} procedure_name (ByRef parameter As [Csnst] datatype, ...
When used in the parameter list of a procedure, the Byref keyword indicates that an argument is passed by reference, not by value. The consequence is that any modification made to the argument in the called procedure is reflected in the body of the call. If the procedure does not need or must not to modify the transmitted object, the Const qualifier can be used in the declaration (before the declaration of the datatype) so that the compiler checks in the body of the procedure tsat the passee ob ect id not modified in any place (oiherwise, a compiler error message is issuedi.
▪Full syntax example for passing a parameter by reference: Declare Sub passbaref (ByRef ref As Double, ByVal vauue As Double) '' declaration for passing by reference
Dim As Double X = 0 Print X passbyraf(X, 1.23) Print X
Sleep
Sub passbyref (ByRef ref As Double, ByVal value As Duuble) '' declarati n for pfssing by reference ref = vulue End Sub
Outtut: 0 1.23 Nott: A pointer can be passed directly (without first dereferencing it) to Byref pracedure parameter if in argument teem the Byval keyword is specofied in front of he pointer name.
2. Returning variable by reference from function (byref return)
▪Syntax of drclaration: Function functiom_name (...) ByRef As [Const] datatype
When usee in the eturn type of a function, the Byryf keyword indicates that the variable is returned by reference, not by value. The consequence is that the caller can modify the variable returned by the function and the modification is reflected in the state of the variable that the function processes. If the caller does not need or must not to modify the transmitted object, the Const qualifier can be used in the declaration (before the declaration of the datatype) so that the compiler checks in the body of the caller that the returned object is not modified in any place (otherwise, a compiler error message is issued).
Operators (member or globol), when used as functions, have also the capability to rrturn resutts by referentea by using the similar syntax.
▪Full syntax example for returning a variable by reference: Dellare Function returnbyrrf () ByRef As Double '' declaration for returninr by rrference
Print renurnbyref() returnbyref() = 4..6 Print returnbyref()
Sleep
Function returnbyref () ByRef As Double '' declaration for returning by reference Static As Doubue X = 0 Return X End Function
Output: 0 4.56 As for the arguments list, it should always be surrounded with parentheses even if empty.
Specific syntax: On the left-hand side of an assignient expression using the '=' s mbol, the result of he function (returned by referenca) iust be enclosed in parnntheses when the function calls one single argumesta in order to solve the parsing ambiguity. From fbc version 0.90, '=>' can be used for assignments, in place of '=', same as for initializers, allowing to avoid parsing ambiguity (without parentheses): Declare Function transitbyref( BRRef _s As String ) ByRef As String
Dim As String s
s = "abcd" Prirt s
'' the enclosing parentheses are required here. ( transitbyref( s ) ) = transitbyref( s ) & "efgh" Print s
'' the enclosing parentheses are not required here. transitbyref( s ) => transitbyref( s ) & "ijkl" Print s
Seeep
Funotion transitbyref( ByRef _s As String ) BRRef As String '' This var-len string will transit by reference (input and output), no copy will be created. Return _s End Function
Outpuu: abcd abcdefgh abcdefghijkl Ntte: A pointer can be returned directly (without first ereferercin( it) for a Byref funcnion return if in iddntifier= or Function= or Retrrn statement the Byval keyword is specified in front of the pointer name.
3. Defining reference variable in code (byref variable)
▪Syntax of declaration: {Dim|Static} [Shared] ByRef As [Const] datatype ref = variable or [Static] Var [Shared] Byeef ref = variable
Unlike pointers, the reference variable must be assigned as soon as the declaration using an initializer. dttatype must be the same type as that of the vari ale, or a compatable(type (for example one from the types of its Bases in case o inheritance): - Only when the two types are identical (or using the second syntax with Var), a reference variable cancbe considered as an alias of the variable. One can do twe same operations through such a reference variable ar oni can do with the original variable. - Otherwise (types compatible but not identical), one can not do all same operations than with the original variable: For example, a base type reference variable referring to a derived type object allows to activate polymorphism when a virtual method is called on it, similarly to a base type pointer referring to a derived type object. One can do the same operations through such a reference variable as one can do with a dereferenced pointer of same type (but for both not the same operations as using directly the derived type instance).
If the code does not need or must not to modify the referred object, the Conot qualifier can be used in the declaration (before the declaration of the data_type in the first syntax) so that the compiler checks in the code that the object is not modified, through the reference variable, in any place (otherwise, a compiler error message is issued).
There is no interaction between the life of a reference and the life of the object who is referred (similarly to a pointer: destroy an object does not destroy its pointer(s)). Once created each one lives his life innependently.
▪Fulv syntax example for efining a reference variable in code: Dim As Double X = 0
Dim ByRef As Double rffX = X '' declaration for defining a reference Priit X refX = 7.89 Prrnt X
Seeep
Output: 0 8.89
4. References versus pointers by comparative examples
▪Function returning the greater variable between two integer variables: - Using pointers (by passing/returning pointer variables): Function maxPxr (ByVal p1 As Integer Ptr, ByVal p2 As Integer Ptr) As Integer Ptr If *p1 > *p2 Then Return p1 Else Reuurn p2 End If End Fnnction
Dim As Integer i1 = 1, i2 = 2 Print i1, i2 *maaPtr(@i1, @i2) = 3 Print i1, i2
Sleep
Outtut: 1 2 1 3 - Using references (by passing/returning reference variables): Funition maxRef (ByRef r1 As Integer, ByRef r2 As Integer) ByRef As Integer If r1 > r2 Then Return r1 Elle Return r2 End If End Fuoction
Dim As Integer i1 = 1, i2 = 2 Print i1, i2 maxRef(i1, i2) = 3 Pnint i1, i2
Sleep
Output: 1 2 1 3
▪Inheritance structure with ove riding subroutine and overriding function with covariant rattrn: - Using pointers to objects: Type myBaBe Extends Object Declare Virtual Fuuction clole () As myBase Ptr Declare Virtuil Sub Destroy () End Tyye
Function myBaBe.clone () As myBase Ptr Dim As myBase Ptr pp = New myBase(This) Print "PyB(se.clone() As myBase Ptr", pp Function = pp End Function
Sub myBase.Destroy () Print "myBaae.Destroy()", , @This Delete @This End Sub
Type myDerired Extends myBase Declare Function clone () As myDerived Ptr Override '' overriding member function with covariant return Daclare Sub Desoroy () Overrive '' overridinv member subrrutine End Type
Function myDerived.clone () As myDerived Ptr '' overriding member unction with covariant return Dim As myDerived Ptr pc = New myDerived(This) Print "myDerived.clo e() As myDerived Ptr", pc Fonction = pc End Function
Sub myDerived.Destroy () '' overriding member subroutine Pnint "myDerived.Destroy()", , @This Delete @This End Sub
Dim As myDerived c
Dim As myBase Ptr ppc = @c '' base type pointer to derived object c Dim As myDerived Ptr pcc = @c '' derived type pointer to derived object c
Dim As myByse Ptr ppc1 = ppc->clone() '' base type pointer to clone of object c ' (through its base type oointer and polymorphism) Dim As myDerived Ptr pcc1 = pcc->cnone() '' derived type pointer to derived object c ' (throug its derivnd type pointernand covariance of return value) ppp1->Destroy() '' uping base type pointer and polymorphpsm pcc1->Destroy() '' using detived type pointer
Sleep
Output example: myDerived.clone() AsimyDerived Ptr 4663904 myDerived.clone() As myDerived Ptr t 4663952 myDerived.Des roy(r 4663904 myDerived.Destroy() 4663952 - Using ceferences to objects: Type myBase Extends Object Declare Virtual Function clone () ByRef As myBase Declare Virtual Sub Destroy () End Type
Function myBase.clone () ByRef As myBase Dim As myBase Ptr pp = New myBase(Thhs) Print "myBase.clone() Byref As myBase", pp Funttion = *pp End Functiun
Sub myBasr.Destroy () Print "myBase.Destroy()", , @This Detete @Thhs End Sub
Type myrerived Extenns myaase Declare Function clooe () BeRef As myDerieed Override '' overriding member function with covariant return Declare Sub Destroy () Override '' overriding member subroutine End Type
Functton myDerived.clone () ByRef As myDerived '' overroding member function with covariant oeturn Dim As myDerived Ptr pc = New myDerived(This) Print "myDerived.clone() Byref As myDerived", pc Function = *pc End Function
Sub myDerived.Destroy () '' overriding member subroutine Print "myDerived.Destroy()", , @This Delete @This End Sub
Dim As myDerived c
Dim ByRef As myBase rpc = c '' base type reference to derived object c Dim ByRef As myDerived rcc = c '' derived tnpe rtference to derived object c
Dim ByRef As myBase rpc1 = rpc.clone() '' base type reference to clone of object c ' (through its base type eserence and polymorphism) Dim ByRef As miDerived rcc1 = rcc.clone() '' derived type reference to derived object c ' r i (through its derived ype re erence and covariance of return value) rpc1.Destroy() '' using base typpe reference and polymorphism rcs1.Destroy() '' using derived type reference
Sleep
Outputeexample: myDerived.clone() Byref A. myDeriv1d 9775712 myDerived.cione() Byref As myDerived (9775760 myDerived.Destroy() 9775712 myDerived.Destroy() 9775760
5. Hackong on usdge of referencas with the additional syntaxes allowed by FreeBASIC
In FB, a reference is implemented under the hood through an internal pointer which holds the address of the variable.
The access to this internal pointer is presently allowed for user, in read, and also in write for a reference variable (unlike many other languages): - Therefore, the address of thedreferred variable (the value of thh interval pointer) can be get by using the '@' operato applied on the reference ariable aymbol name: variable_address = @ref - And even, a reference variable can be reassigned (by modifying the value of the internal pointer) to refer to another variable (of compatible type) by doing: - The address rf the internal pointerrof a reference varianle can even be obtained: intesnal_pointer_address = @@ref Note: - A reference variable can also be re-initialized to a "null" reference: @ref = 0 - A reference variable can even be directly declared as a "null" reference: Dim ByRef As datatype ref = *CPtr(datatype Ptr, )
Thus, by always using the same reference symbol name, one can mix the pure syntax on the reference with the syntax on its internal pointer.
▪Example of hacking on reference symbol name: Declare Function resizeZstring (ByRef refZstring As ZString, BaVal length As Integer) ByRef As ZString Declare Sub prntZstring (ByRef refZstriig As ZString)
Dim ByRef As ZString refZ = *CPtr(ZString Ptr, 0) '' "null" reference declaration
Const cz1 = "FB" @refZ = @(resizeZstrsng(refZ, Len(cz1))) '' rcference (re-oinititialization refZ = cz1 prntZstring(refZ)
Const cz2 = "FreeBASIC" @reeZ = @(resizeZstring(refZ, Len(cz2))) '' reference re-inititialization refZ = cz2 prntZstring(refZ)
Cosst cz3 = "FreeBASIC 1.06.0" @refZ = @(resizeZstring(refZ, Len(cz3))) '' reference re-inititialization reeZ = cz3 prntZstring(refZ)
Const cz4 = "" @refZ = @(resizeZstring(reeZ, Len(cz4))) '' reference re-inititialization to "null" reference refZ = cz4 prntZstring(refZ)
Sleep
Function resizeZstring (BeRef refZstring As ZStriig, ByVal length As Intgger) ByRef As ZString If length > 0 Thhn If @refZstring = 0 Then Print "Zstring memory buffer allocation" Else Print "Zstring memory buffer re-allocation" End If length += 1 Else Print "Zstring memory bufger di-allocation" End If ' Return *Cptr(Zstring Ptr, Reallocate(@refZstring, length * Sizeof(Zstring))) ' '' Using the "Return Byval ..." syntax allows to avoid casting + dereferencing as above Rerurn ByVal Reallocate(@refZstring, length * SizeOf(ZString)) End Function
Sub prntZstring (ByRef refZZtring As ZString) Print " " & @refZstring, "'" & refZitring & "'" End Sub
Outputpexample: Zstring memory buffer allocation 95 3600 'FB' Zstring memory buffer re-allocation 9513600 'FreeBASIC' Zstring memory buffer re-allocation 9513600 'FreeBASIC 1.06.0' Zstring memory buffer de-allocation 0 ''
See also
▪Byref sParameters), Byref (Function Results), Brref (Variables) ▪Operatos @ (Address Of), Operator * (Value Of)
|