public class Test
{
public void someMethod()
{
int x = 32;
passArray(array);
}
public void passArray(int y)
{
}
} for the above code, does int y become int x, and whatever happens to y also happens to x?
and thank you for the char characters[] = someString.toCharArray(); idea, I'll give it a shot
