Is x an array? What good is it to create a String object from the value 0 that you are assigning to the x array, when you then discard the String instance created?
You can NOT use a function to create, at run time, a bunch of named String objects. Names don't exist at run time.
Is x an array? What good is it to create a String object from the value 0 that you are assigning to the x array, when you then discard the String instance created?
You can NOT use a function to create, at run time, a bunch of named String objects. Names don't exist at run time.
x is not an array. I just want to make a set number of strings with a function, instead of copyng and pasting the same line over and over.This would enable me just enter the number of strngs that have to be created. It should have a form like this:
String "x"[numbers from 0 to max] = 0;
I did not understand what you tryed to explain to me, since my knowledge of programming is very basic.