En python tienes la función type que regresa el tipo.
Pero en Java tienes getClass.
Código Java:
Ver originalpublic class Main {
static void getType
(Object obj
) { System.
out.
println(obj.
getClass()); }
public static void main
(String args
[]) {
int n = 10;
double d = 10.0;
getType(s);
getType(n);
getType(d);
}
}