Let say i have a application which has a class A.java which only print some info.
So will my application work under:
[1] If i compile A
with jdk1.7.x86
and run it with jre1.7.x64
on a 64 bit
windows
machine ?
[2] If i compile A
with jdk1.7.x64
and run it with jre1.7.x86
on a 32 bit
windows
machine ?
[3] If i compile A
with jdk1.7.x86
and run it with jre1.7.x86
on a 64 bit
windows
machine ?
[4] If i compile A
with jdk1.7.x86
and run it with jre1.7.x64
on a 64 bit
Linux
machine ?
[5] If i compile A
with jdk1.7.x64
and run it with jre1.7.x86
on a 32 bit
Linux
machine ?
[6] If i compile A
with jdk1.7.x86
and run it with jre1.7.x86
on a 64 bit
Linux
machine ?