Método modificador isNative (mod) en Java con ejemplos

El método isNative(mod) de java.lang.reflect.Modifier se usa para verificar si el argumento entero incluye el modificador nativo o no. Si este parámetro entero representa el modificador de tipo nativo, el método devuelve verdadero, de lo contrario, es falso.

Sintaxis:

public static boolean isNative(int mod)

Parámetros: este método acepta nombres enteros ya que mod representa un conjunto de modificadores.

Retorno : este método devuelve verdadero si el mod incluye el modificador nativo, de lo contrario, devuelve falso.

Los siguientes programas ilustran el método isNative():
Programa 1:

// Java program to illustrate isNative() method
  
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
  
public class GFG {
  
    public static void main(String[] args)
        throws NoSuchFieldException
    {
  
        // get Method class object
        Method[] methods
            = Calculator.class.getMethods();
  
        // get Modifier Integer value
        int mod = methods[0].getModifiers();
  
        // check Modifier is native or not
        boolean result = Modifier.isNative(mod);
  
        System.out.println("Mod integer value "
                           + mod + " is native : "
                           + result);
    }
  
    class Calculator {
        native void addNumbers();
    }
}
Producción:

Mod integer value 17 is native : false

Programa 2:

// Java program to illustrate isNative()
  
import java.lang.reflect.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // get Method class object
        Method[] methods
            = Numbers.class.getMethods();
  
        // get Modifier Integer value
        int mod1 = methods[0].getModifiers();
        int mod2 = methods[1].getModifiers();
  
        // check Modifiers are native or not
        boolean result1 = Modifier.isNative(mod1);
        boolean result2 = Modifier.isNative(mod2);
  
        // print results
        System.out.println("Mod integer value "
                           + mod1 + " for method "
                           + methods[0].getName()
                           + " is native : "
                           + result1);
  
        System.out.println("Mod integer value "
                           + mod2 + " for method"
                           + methods[1].getName()
                           + " is native : "
                           + result2);
    }
  
    // sample native class
    abstract class Numbers {
  
        abstract public int initializeNumber();
        int declareNumbers()
        {
            return 0;
        }
    }
}
Producción:

Mod integer value 1025 for method initializeNumber is native : false
Mod integer value 17 for methodwait is native : false

Referencias: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isNative(int)

Publicación traducida automáticamente

Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *