Answers for "how to check the value type in java"

3

how to check type of primitive value in java

int i = 20;
float f = 20.2f;
System.out.println(((Object)i).getClass().getName());
System.out.println(((Object)f).getClass().getName());
Posted by: Guest on May-21-2020
4

java check data type

a.getClass().getName()
Posted by: Guest on June-03-2021

Code answers related to "how to check the value type in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language