`strictfp` is a keyword in the Java programming language that restricts floating-point calculations to ensure portability. It was introduced into `Java` with `JVM` version 1.2

learn more… | top users | synonyms

1
vote
1answer
24 views

Reasons behind why abstract and strictfp keywords cannot be used together in a method declaration?

I'm reading SCJP by katherine sierra. I understand that abstract and final keywords cannot be used together because they contradict each other as explained in the book. However, I don't understand ...
4
votes
1answer
154 views

How to make a (static) initializer block strictfp?

While refactoring some code I stumbled over this oddity. It seems to be impossible to control the strictfp property for an initializer without affecting the entire class. Example: public class ...
1
vote
1answer
147 views

Doubt about strictfp and StrictMath

I have a little technical question, is it the same to call: public static strictfp double myMethod(double phi){ return Math.exp(phi); } or: public static double myMethod(double ...
4
votes
3answers
491 views

strictfp in Java

I'm implementing some neural network library in java , and there are intensive double (not Double) matrix operations, Matrices are large and performance is required of course. So I came to read about ...
6
votes
1answer
242 views

No strictfp in Scala - Workarounds?

I searched the web for it but could not find any hint how to enforce srictfp in Scala. There are some people complaining about it but real solutions cannot be found. There is a bugtracker entry about ...
-1
votes
3answers
676 views

what is the use of strictfp non- access modifier?

I know this is a duplicate question. but i want know it with an example. so can anyone explain it with an example? Link to duplicate post: ...
50
votes
5answers
17k views

When should I use the “strictfp” keyword in java?

Ok, I've looked up what this does, but does anyone actually have an example of when you would use the "strictfp" keyword in java? Has anyone actually found a use for this? Would there be any ...