Есть ли способ узнать, является ли Field логическим значением, аналогичным isPrimitive ()? - PullRequest
11 голосов
/ 14 января 2012

Есть ли способ узнать, является ли Поле boolean в Java-отражении таким же, как isPrimitive()?

Field fieldlist[] = clazz.getDeclaredFields();
for (int i = 0; fieldlist.length & gt; i; i++) {
 Field fld = fieldlist[i];
 if (fld.getClass().isPrimitive()) {
  fld.setInt(object, 0);
  continue;
 }
}

Ответы [ 4 ]

27 голосов
/ 14 января 2012
if(fld.getType().equals(boolean.class))

Только что проверил, и это работает для примитивных boolean переменных.

1 голос
/ 14 января 2012

Попробуйте это ( ссылка ):

public boolean getBoolean(Object obj)
               throws IllegalArgumentException,
                      IllegalAccessException

Gets the value of a static or instance boolean field.

Parameters:
    obj - the object to extract the boolean value from 
Returns:
    the value of the boolean field 
Throws:
    IllegalAccessException - if the underlying field is inaccessible. 
    IllegalArgumentException - if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), **or if the field value cannot be converted to the type boolean** by a widening conversion. 
    NullPointerException - if the specified object is null and the field is an instance field. 
    ExceptionInInitializerError - if the initialization provoked by this method fails.
1 голос
/ 14 января 2012

Я полагаю, Boolean.class.isAssignableFrom(fld.getClass()) может использоваться для определения, является ли поле логическим. У меня не было возможности проверить, работает ли это для примитивов.

0 голосов
/ 17 июля 2018

Это для примитива и объекта:

boolean isBooleanType = field.getType().equals(boolean.class) || field.getType().equals(Boolean.class);
...