1strictfp is a modifier in the Java programming language that restricts
2floating-point calculations to ensure portability.
3The strictfp command was introduced into Java with the Java virtual machine
4version 1.2 and is available for use on all currently updated Java VMs.
5
6strictfp class Test {
7}
8strictfp interface Test {
9}
10class A {
11 strictfp void Test() {
12 }
13}