What is the correct sytanx for
I don't know how to use it as I read java doc it is something like Class<? extends Object> ..what does it mean?
I need to know what class is that and need to do something like this
Please share the correct syntax with me....Thank You
Code:
getClass()?
I need to know what class is that and need to do something like this
Code:
Class whatClass;
if (whatClass == BigInteger.class)
{ do something ....}
Comment