El método isStatic(mod) de java.lang.reflect.Modifier se usa para verificar si el argumento entero incluye el modificador estático o no. Si este parámetro entero representa un modificador de tipo estático, el método devuelve verdadero o falso.
Sintaxis:
public static boolean isStatic(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 mod incluye el modificador estático; falso en caso contrario.
Los siguientes programas ilustran el método isStatic():
Programa 1:
// Java program to illustrate isStatic() method import java.lang.reflect.*; public class GFG { // create a String Field static String string; public static void main(String[] args) throws NoSuchFieldException, SecurityException { // get Field class object Field field = GFG.class .getDeclaredField("string"); // get Modifier Integer value int mod = field.getModifiers(); // check Modifier is static or not boolean result = Modifier.isStatic(mod); System.out.println("Mod integer value " + mod + " is static : " + result); } }
Mod integer value 8 is static : true
Programa 2:
// Java program to illustrate isStatic() import java.lang.reflect.*; public class GFG { public static void main(String[] args) { // get Method class object Method[] methods = Shape.class.getMethods(); // get Modifier Integer value int mod = methods[0].getModifiers(); // check Modifier is static or not boolean result = Modifier.isStatic(mod); System.out.println("Mod integer value " + mod + " is static : " + result); } public static class Shape { public static void createShape() {} } }
Mod integer value 9 is static : true
Referencias: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isStatic(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