java 判断对象的所有属性是否为空解决方案
摘要:public static boolean allfieldIsNUll(Object o){ try{ for(Field field:o.getClass().getDeclaredFields()){ field.setAccessible(true);//把私有属性公有化 Object ob
阅读全文
posted @ 2018-03-30 13:44
posted @ 2018-03-30 13:44
posted @ 2018-03-27 18:33
posted @ 2018-03-26 16:16
posted @ 2018-03-26 14:00
posted @ 2018-03-14 16:33