Posts by Guilherme Spadaccia • 35 points
2 posts
-
0
votes2
answers658
viewsA: Copy array in ADVPL
When making a simple assignment of an array using the operator ':=' one variable will reference the memory address of the other, using the aClone function() (http://tdn.totvs.com/display/tec/AClone)…
-
3
votes2
answers658
viewsQ: Copy array in ADVPL
In ADVPL what difference to make: aArray1 := {"A", "B", "C"} aArray2 := aArray1 or aArray2 := aClone(aArray1)