Results 1 to 5 of 5
- 01-02-2009, 06:28 PM #1
[SOLVED] Can variable names be dynamically created?
Is there a way to dynamically create a variable name? I was thinking on the terms of something like the following:
and obtain variable names like myVar1, myVar2, myVar3, etcJava Code:String myVar%n;
Thanks,
CJSLChris S.
Difficult? This is Mission Impossible, not Mission Difficult. Difficult should be easy.
- 01-02-2009, 07:41 PM #2
Member
- Join Date
- Dec 2008
- Location
- Italy
- Posts
- 79
- Rep Power
- 0
No possible
No, it's no possible. I know a PHP similar feature, named variable variable names. But in Java in can't be accomplished, since the compiler must check every identifier at runtime. Neither using RTTI is helpful. But why do you need that missing feature?
- 01-02-2009, 07:55 PM #3
Thanks for the answer...
I was afraid of that. Sometime ago, I thought that I needed it for a program (I can't remember the context). I think it had to do with printing the name of variables from different threads, but that can be solved by formatting the print output. But I still think that it would be a cool option.
Thanks,
CJSLChris S.
Difficult? This is Mission Impossible, not Mission Difficult. Difficult should be easy.
-
Usually when I think that I need this feature, a Map will often fit the bill, and that's because the problem isn't really concerning the variable name, which has little meaning, but more often it's tying a String to a specific object, something Maps do well.
- 01-03-2009, 01:06 AM #5
Similar Threads
-
Vector getting re-created with each call
By nidhirastogi in forum Advanced JavaReplies: 6Last Post: 10-17-2008, 07:37 AM -
How to find file created date.....
By roshithmca in forum Advanced JavaReplies: 1Last Post: 02-18-2008, 09:48 AM -
Help, created a username and password box
By cachi in forum AWT / SwingReplies: 1Last Post: 08-07-2007, 04:21 AM -
create a tree when a new class is created
By osval in forum Advanced JavaReplies: 1Last Post: 08-06-2007, 08:58 PM -
building file and variable names from variables
By madad2005 in forum New To JavaReplies: 2Last Post: 07-18-2007, 04:47 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks