Suppose I've a variable in java
String test=new String();
Now i want to declare a new variable with its name equal to the value of the variable 'test'.
|
Suppose I've a variable in java
Now i want to declare a new variable with its name equal to the value of the variable 'test'. |
||||
|
|
|
You can't do that in Java, use a java.util.Map instead. For example:
|
|||||||||
|
|
as far as I know, Java doesn't allow adding variables in reflection
however, you can use
now, you seek your new objects by:
amit |
|||||||
|