Java is (should) be platform independent. It's binary and source compatible. So the same Java applet will run on un*x/windows/whatever.
A C++ program can be made platform independent but then you must use only the standard C++ libraries. Even then it's only source compatible and not binary compatible. Meaning you need to recompile your program for every platform you want to run it on.




Reply With Quote