在我的应用程序中,如果可能的话,我想打印出一个变量的值及其名称。
例如:
int testinteger = 0;
String type = > type of testinteger? (int);
String name = > name of testinteger? (testinteger);
System.out.println("The "+type+" "+name+" has a value of"+ testinteger);
所以我想阅读: int testinteger 的值为 0
不幸的是,我想,原始类型是不可能的。String
但对于,Integer
等类型也是如此Boolean
吗?有没有可能得到它?