What is the use of classes like int.class or double.class
For example you can not do something like
Object val=getValue();
if(val instanceof int){
}
or
int i = new int();
Yes I know it is not possible because int is not Object type. However, what is the need to have those primitive classes? I do not see any clear explanation of this in Oracle documentation.
It can be useful for reflection.
For example if you wanted to use
Class.getDeclaredMethodto lookup a method that took anintas a parameter, you might do something like: