Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example i have a string input "int",can i declare a variable base on that input? (Not switch check please). I mean something like this (pseudo-code) or similar:

 String str="int"; 
 new (variable_name,"int");

// create new variable with int datatype.

share|improve this question
1  
As written, the answer is no (you can't create variables at runtime). But there's probably an answer. What is the actual problem that you're trying to solve? – Anon Jan 13 '11 at 14:33
nope, it's just some of my experiment with java.I'm new to java and i found out that it's really great! – Singgum3b Jan 13 '11 at 14:38

3 Answers

up vote 2 down vote accepted

You can do this:

String className = "MyClass";
Object obj = Class.forName(className).newInstance();

But it won't work for primitive types.

share|improve this answer
which, in a pinch, could still be used for the wrapper classes around the primitive types. – Riggy Jan 13 '11 at 14:36
It should work fine for boxed primitives, i.e. Integer, Double etc (as opposed to int and double). – Cameron Skinner Jan 13 '11 at 14:37
i guess this is the final solution. – Singgum3b Jan 13 '11 at 14:51
@Singgum3b - assuming that the class you want to instantiate has a no-arg constructor. Value classes (eg: Integer) don't, so this code will throw. Like I said above, the correct answer depends on the actual problem that you're trying to solve. In most cases, rather than reflection, I'd use a factory. – Anon Jan 13 '11 at 14:58

If instead of using primitive types you will use cannonical name of Object based class you can try to do this

public Object loadClass(String className) {

   return Class.forName(className).newInstance(); //this throw some exceptions. 

}
share|improve this answer

Not practically, Java is strongly typed and the type of all variables must be known at compile time if you are to do anything useful with them.

For example, you could do something like this;

String str = "java.lang.Integer";
Class clazz = Class.forName(str);
Object o = clazz.newInstance();

..which will give you an Object o whose type is determined at runtime by the value of the String str. You can't do anything useful with it though without first casting it to the actual type, which must be known at compile time.

share|improve this answer
Integer doesn't have a no-arg constructor, so this code will throw. – Anon Jan 13 '11 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.