Java中的修饰符 isStrict(mod) 方法及示例
Java.lang.reflect.Modifier的isStrict(mod)方法用于检查整数参数是否包含 strictfp 修饰符。如果此整数参数表示 strictfp 类型修饰符,则方法返回 true,否则返回 false。
句法:
public static boolean isStrict(int mod)
参数:此方法接受一个整数名称,因为 mod 表示一组修饰符。
返回:如果 mod 包含 strictfp 修饰符,此方法返回 true;否则为假。
下面的程序说明了 isStrict() 方法:
方案一:
// Java program to illustrate isStrict() method
import java.lang.reflect.*;
public class GFG {
public static void main(String[] args)
throws NoSuchFieldException,
SecurityException
{
// get Modifier Integer value
int mod = Test.class.getModifiers();
// check Modifier is strict or not
boolean result = Modifier.isStrict(mod);
System.out.println("Mod integer value "
+ mod + " is strict : "
+ result);
}
strictfp class Test {
strictfp double mul()
{
return 0;
}
}
}
输出:
Mod integer value 0 is strict : false
方案二:
// Java program to illustrate isStrict()
import java.lang.reflect.*;
public class GFG {
public static void main(String[] args)
throws NoSuchFieldException,
SecurityException
{
// get Modifier Integer value
int mod = interfaceTest
.class
.getModifiers();
// check Modifier is strict or not
boolean result
= Modifier.isStrict(mod);
System.out.println("Mod integer value "
+ mod + " is strict : "
+ result);
}
strictfp interface interfaceTest {
double method1();
int method2();
}
}
输出:
Mod integer value 1544 is strict : false
参考资料: https: Java/lang/reflect/Modifier.html#isStrict(int)