在Java中,可以使用反射機制來查看變量的類型。通過調用變量的getClass()
方法可以獲取變量的Class對象,然后通過Class對象的getName()
方法可以獲取變量的類型名稱。
例如,假設有一個變量int num = 10;
,可以通過以下方式查看其類型:
int num = 10;
Class<?> type = num.getClass();
String typeName = type.getName();
System.out.println("Variable type: " + typeName);
另外,可以使用instanceof
關鍵字來判斷一個對象是否屬于某個特定的類型。例如:
int num = 10;
if(num instanceof Integer) {
System.out.println("Variable is of type Integer");
} else {
System.out.println("Variable is not of type Integer");
}