1. 程式人生 > >JAVA列印變數型別

JAVA列印變數型別


public class getType {
	public static String getType(Object test) {
		return test.getClass().getName().toString();
					
	}
	public static void main(String[] args) {
		int i = 1;
		System.out.println(getType(i));
		
	}

}