0
What is the difference between Java for Android and desktop java ?
My question is in the title :)
1 Answer
+ 1
why you got downvote?
its a good question.
- Android uses Java syntax and has borrowed some of the libraries.
- Java files on Android are compiled into .class files and then in dalvik executables(.dex)
- Android programs run on Dalvik virtual machine which a customized register based virtual machine written for Android
- Monu