Let's imagine one retrieves the declaring type of a Field using reflection.

Which of the following tests will correctly indicate whether one is dealing with an int or an Integer?

Field f = ...
Class<?> c = f.getDeclaringClass();
boolean isInteger;

isInteger = c.equals(Integer.class);
isInteger = c.equals(Integer.TYPE);
isInteger = c.equals(int.class);

isInteger = ( c == Integer.class);
isInteger = ( c == Integer.TYPE);
isInteger = ( c == int.class);
link|improve this question

4  
why not testing it yourself? Why not reading the javadoc? – JB Nizet Aug 16 '11 at 18:19
why are you asking this and not just running it yourself? This is very well documented. – Taylor Aug 16 '11 at 18:21
2  
you already wrote the code, why don't you just wrap it in a main and compile and run it? – John Gardner Aug 16 '11 at 18:22
The issue with testing myself only is that there is a risk of missing a corner case. That's why I am asking the question. – JVerstry Aug 16 '11 at 18:40
feedback

2 Answers

Integer.TYPE points to int.class. However, I think you are using Field.getDeclaringClass() incorrectly, as this returns the Class object representing the class that declares the field. What you would want to use is Field.getType().

link|improve this answer
Yes, you are right, I should use Field.getType(). – JVerstry Aug 16 '11 at 18:24
feedback
up vote 0 down vote accepted

Based on Field.getType() (instead of f.getDeclaringClass()), I get the following:

Type: java.lang.Integer

equals(Integer.class): true
equals(int.class)    : false
equals(Integer.TYPE) : false
== (Integer.class)   : true
== (int.class)       : false
== (Integer.TYPE)    : false

Type: int

equals(Integer.class): false
equals(int.class)    : true
equals(Integer.TYPE) : true
== (Integer.class)   : false
== (int.class)       : true
== (Integer.TYPE)    : true

Type: java.lang.Object

equals(Integer.class): false
equals(int.class)    : false
equals(Integer.TYPE) : false
== (Integer.class)   : false
== (int.class)       : false
== (Integer.TYPE)    : false

Meaning the following is true:

Integer.TYPE.equals(int.class)
Integer.TYPE == int.class

Meaning if I want to find out whether I am dealing with an int or an Integer, I can use any of the following tests:

isInteger = c.equals(Integer.class) || c.equals(Integer.TYPE);
isInteger = c.equals(Integer.class) || c.equals(int.class);
isInteger = (c == Integer.class) || (c == Integer.TYPE);
isInteger = (c == Integer.class) || (c == int.class );

Is there a corner case I am missing? If yes, please comment.

link|improve this answer
1  
And there are no corner cases missing, unless you count a field that is declared as Object and winds up storing an Integer – Paul Bellora Aug 16 '11 at 19:36
Good point. I did not think about this corner case. – JVerstry Aug 16 '11 at 19:40
1  
Oh yeah, and Integer extends Number, so there's another possible corner case if it matters. – Paul Bellora Aug 16 '11 at 19:46
feedback

Your Answer

 
or
required, but never shown

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