hi, when I do:
someclass &someobject = someotherobject ;
it asigns the reference of someotherobject to the variable 'someobject' that
you just declared. SO that basically
someobject and someotherobject are really the same variable with two names.
but if I do:
someclass someobject;
&someobject = someotherobject ;
it no longer works D:
does anyone know how to get it to work in the second case?
--
someclass &someobject = someotherobject ;
it asigns the reference of someotherobject to the variable 'someobject' that
you just declared. SO that basically
someobject and someotherobject are really the same variable with two names.
but if I do:
someclass someobject;
&someobject = someotherobject ;
it no longer works D:
does anyone know how to get it to work in the second case?
--
Comment