This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Is it possible to build a String then use it as a variable name?
Garann Means
Ranch Hand
Joined: Jan 28, 2002
Posts: 214
posted
0
I'm trying to avoid a ridiculous number of 'if's, and the only way I can think of to do so is to build the variable names of constants that are defined elsewhere in the API. Can anyone help? Thanks, g.
Dirk Schreckmann
Sheriff
Joined: Dec 10, 2001
Posts: 7023
posted
0
I don't understand your question exactly. Could you elaborate on what you mean?
and you're using reflection just to reduce the amout of code you have to write Um, have you tried profiling the amount of time to do each? In JDK1.2, method invokation using reflection took 200x longer than calling the method directly. And thats when you cache methods rather than looking them up each time. It apparently got better in JDK1.3 and is now more like 20x as long, but is this really what you want when a second solution might be to format the code differently?
Karl Laird
Ranch Hand
Joined: Jul 14, 2001
Posts: 67
posted
0
We might be able to help more if you post an example of the code you are trying to streamline. Without, it is difficult to make intellegent suggestions - would a case statement be appropriate? static final constants can often be used to provide mappings to more complex combinations circumventing the limitation of int / char cases.
The Eagle sneers at the Peacock<p>Systems Administrator<br />OrderWare Solutions Ltd<br /><a href="http://www.orderware.net" target="_blank" rel="nofollow">http://www.orderware.net</a>