Java Modifier isStrict(mod)方法及示例
java.lang.reflect.Modifier 的 isStrict(mod) 方法用于检查整数参数是否包括strictfp修改器。如果这个整数参数代表strictfp类型的修改器,那么该方法返回true,否则返回false。
语法
public static boolean isStrict(int mod)
参数: 该方法接受一个整数名称,因为mod代表一组修改器。
返回 :如果mod包括strictfp修改器,该方法返回true;否则返回false。
以下程序说明了isStrict()方法:
程序1 :
// 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
程序2
// 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://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isStrict(int)