Java中的修饰符 isProtected(mod) 方法及示例
Java.lang.reflect.Modifier的isProtected(mod)方法用于检查整数参数是否包含受保护的修饰符。如果此整数参数表示受保护类型修饰符,则方法返回 true,否则返回 false。
句法:
public static boolean isProtected(int mod)
参数:此方法接受一个整数名称,因为 mod 表示一组修饰符。
返回:如果 mod 包含受保护的修饰符,此方法返回 true;否则为假。
下面的程序说明了 isProtected() 方法:
方案一:
// Java program to illustrate isProtected() method
import java.lang.reflect.*;
public class GFG {
// create a String Field
protected 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 protected or not
boolean result = Modifier.isProtected(mod);
System.out.println("Mod integer value "
+ mod + " is protected : "
+ result);
}
}
输出:
Mod integer value 4 is protected : true
方案二:
// Java program to illustrate isProtected()
import java.lang.reflect.*;
public class GFG {
// create an int Field
public int numbers;
public static void main(String[] args)
throws NoSuchFieldException,
SecurityException
{
// get Field class object
Field field
= GFG.class.getDeclaredField("numbers");
// get Modifier Integer value
int mod = field.getModifiers();
// check Modifier is protected or not
boolean result
= Modifier.isProtected(mod);
System.out.println("Mod integer value "
+ mod + " is protected : "
+ result);
}
}
输出:
Mod integer value 1 is protected : false
参考资料: https: Java/lang/reflect/Modifier.html#isProtected(int)