El método isSynchronized(mod) de java.lang.reflect.Modifier se usa para verificar si el argumento entero incluye el modificador sincronizado o no. Si este parámetro entero representa un modificador de tipo sincronizado, el método devuelve verdadero, de lo contrario, es falso.
Sintaxis:
public static boolean isSynchronized(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 sincronizado; falso en caso contrario.
Los siguientes programas ilustran el método isSynchronized():
Programa 1:
// Java program to illustrate isSynchronized() method import java.lang.reflect.*; public class GFG { public static void main(String[] args) throws NoSuchFieldException, SecurityException { // get Method class object Method[] methods = GFGTest.class.getMethods(); // get Modifier Integer value int mod = methods[0].getModifiers(); // check Modifier is synchronized or not boolean result = Modifier.isSynchronized(mod); System.out.println("Mod integer value " + mod + " is synchronized : " + result); } class GFGTest { public synchronized String method1() { return null; } } }
Mod integer value 33 is synchronized : true
Programa 2:
// Java program to illustrate isSynchronized() import java.lang.reflect.*; public class GFG { public static void main(String[] args) throws NoSuchFieldException, SecurityException { // get Method class object Method[] methods = Thread.class.getMethods(); // loop through methods and // print synchronized methods for (int i = 0; i < methods.length; i++) { // get Modifier Integer value int mod = methods[i].getModifiers(); // check Modifier is synchronized or not boolean result = Modifier.isSynchronized(mod); if (result) { System.out.println("synchronized Method: " + methods[i]); } } } }
synchronized Method: public final synchronized void java.lang.Thread.join(long) throws java.lang.InterruptedException synchronized Method: public final synchronized void java.lang.Thread.join(long, int) throws java.lang.InterruptedException synchronized Method: public synchronized void java.lang.Thread.start() synchronized Method: public final synchronized void java.lang.Thread.stop(java.lang.Throwable) synchronized Method: public final synchronized void java.lang.Thread.setName(java.lang.String)
Referencias: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isSynchronized(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