Is there a way to typecast from Java.lang.Object to an instance of a custom defined class.

Essentially, I have created a Stack (java.util.Stack) and have pushed into it instances of type my_class. But when I pop out from the Stack, I receive an instance of type Java.lang.Object.

Do I have to create a constructor in my_class that can create my_class instances from Java.lang.Object ?


Generics is the best way to go. I am pretty new to Java, and without realizing about generics (same as in C++ STL), I have been doing a lot of typecasting like-

to convert to an integer: new Integer((Java.lang.Object).toString()).intValue()

Guess those days are gone now :) Thanks for making my life easy.

link|improve this question

77% accept rate
feedback

4 Answers

up vote 3 down vote accepted

You should write code using generics. For example instead of

MyObject someObj = ...;
Stack myStack = new Stack();
myStack.push(someObj);
someObj = myStack.pop(); // Error!

you can let the stack know about the type of object within:

MyObject someObj = ...;
Stack<MyObject> myStack = new Stack<MyObject>();
myStack.push(someObj);
someObj = myStack.pop(); // Now this works!

If for whatever reason this isn't feasible, you can cast:

MyObject someObj = ...;
Stack myStack = new Stack();
myStack.push(someObj);
someObj = (MyObject) myStack.pop(); // This works too, but is considered very bad style
link|improve this answer
feedback

You can cast the object like this:

my_class myObj = (my_class)obj;

But if you define your stack as a stack of my_class then you don't need to bother with casting:

Stack<my_class> myStack = new Stack<my_class>();
link|improve this answer
feedback

No, you need to read up on Java Generics

java.util.Stack<myObject> myStack = new java.util.Stack<myObject>();
link|improve this answer
I agree about generics, but the answer to the question is not no. – James Montagne Feb 9 at 2:08
1  
If you're writing new code, then yes, it is. There's literally no reason to cast to and from Object and it is considered a bad practice with modern Java. (And besides, that wasn't actually his question - the only question mark I see is after something that the answer is definitely "no" :) ) – Brian Roach Feb 9 at 2:09
feedback

Is this a serious question?

My_class myClassObj = (My_class) obj;

Actually as in any other language I know. Or do I get your question wrong?

Edit

You could of course also use a generic Stack. Just read the title of your question actually ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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