The following code snippet is not changed by GC:
static int a=0, b=0, c=0;
while this one
int a=0, b=0, c=0;
is changed to
int a=0,
b=0,
c=0;
In my opinion GC should also change the static declaration,
just like the not-static declaration.
GC.uranium@neverbox.com
Logged In: NO
This one does seem to work after all.
GC.uranium@neverbox.com
Logged In: NO
This seems to be true ONLY when the variables a, b and c
have global (file) scope, not when the declaration is inside
a function.
Logged In: NO
This seems to be true ONLY when the variables a, b and c
have global (file) scope, not when the declaration is inside
a function.
GC.uranium@neverbox.com