how can i set a field in a class that it's name is dynamic and stored in a string variable ?
public class test {
public String a1;
public string a2;
public test(String key) {
this.key='found'; <--- error
}
}
feedback
|
|
You have to use reflection:
Here's an example which deals with the simple case of a public field. For the more normal situation of private fields, you would need to loop through the declared fields. A nicer alternative would be to use properties, if possible.
| |||||||||
feedback
|