Oxygen Basic
Programming => Problems & Solutions => Topic started by: Brian Alvarez on November 01, 2020, 10:37:34 PM
-
Hello Charles, im trying to fix the associative array feature, so,
I have a class module that is supposed to return a string pointer. like this:
function pStr(string k) as sys
int i = this.getindex(k)
return this.hBuffer + (i * 8)
end function
When i use the class like this:
somefunction(byval asr.pStr("key"))
And try to print the value like this:
sub somefunction(string *a)
print @a cr
print a cr
end sub
I get the address to a completely new variable that holds the address to the original string. What am i doing wrong?
-
As a reference... this returns a correct string:
function cStr(string k) as string
int i = this.getindex(k)
static string *ps
@ps = this.hBuffer + (i * 8)
return ps
end function
-
Hi Brian, double pointering '**' might help:
function fs(string**s) as string
print @s
return s
end function
string t="ok"
print @t 'same as '@s' inside function fs
print fs(t)
-
That worked! Thanks Charles. :)