1

I have a physics application I want to mantain the deterministic across platforms with scrictfp (which I use and works nowadays in Windows/Mac/Linux Machines) with J2SE 6.

I need to convert this code to compile on:

-Android

-IOS

Is this strictfp possible in these platforms?

felipe
  • 1,212
  • 1
  • 15
  • 27

2 Answers2

0

iOS doesn't run Java, so no. Android does run Java 8, so j2Se6 would likely be fine, as long as you weren't trying to do the UI in that library (the Android UI is highly different).

Gabe Sechan
  • 90,003
  • 9
  • 87
  • 127
0

When it comes to the mobile world,
1) for Android we can use Java for coding so your keyword will work just fine
2) but it won't work on iOS as it does not support Java refer this due to lack of jvm.

Aniruddha K.M
  • 7,361
  • 3
  • 43
  • 52