-2

When compiling a Java-Class in a 32bit environment ( JDK ) does this class also run on a 64bit JRE ? Or do I have to compile the class in a 64bit JDK ?

The class does not have any JNI ( Java native Interface ).

regards

mcfly soft
  • 10,593
  • 26
  • 89
  • 177

1 Answers1

1

yes, it does. the bytecode does NOT depend on the architecture of the environment (the clarification of JNI helped a lot in giving a clear answer).

rmalchow
  • 2,627
  • 15
  • 28