1
vote
6answers
69 views

java use object as double without explicit cast

Say I have this: Object obj = new Double(3.14); Is there a way to use obj like a Double without explicitly casting it to Double? For instance, if I wanted to use the .doubleValue() method of Double ...
7
votes
5answers
148 views

Cost of Up-casting to ArrayList of objects and then down-casting to custom ArrayList

I have a situation in which I am getting data from database, and I want to upcast it to ArrayList of objects and then downcast it to different custom ArrayList i.e. List<User>, ...
1
vote
4answers
546 views

can you downcast objects in java without declaring a new variable?

so I was trying to do something like class O has a child E I declare the variable O xyz = new E(); but then if I call xyz.method(), I can only call those in class O's methods, not E's....so I ...
0
votes
3answers
1k views

Detect Object type then cast it accordingly?

My method takes as input an Object. How do i determine it's type, then cast it accordingly? So for example: binarySearch( Object o ); Inside the binarySearch method, i need a way to determine the ...
2
votes
6answers
922 views

Forced Downcasting in Java

I want to force a downcast on a object what can't be down casted and was wondering what the right approach would be. The use case is that I have a list of rules that are checked and what will generate ...