tags:

views:

124

answers:

1

I'm learning Java for a course this month, and this question is just one I thought of that I'd like to know.

What are the main differences between these two? I know KVM is targeted for mobile devices, correct?

+1  A: 

The KVM is specifically optimized for use with devices with 128k - 256k available memory. It is developed for use with J2ME. The JVM has additional libraries and functionality that the KVM does not have out of the box (but these libraries can be added to the KVM as needed).

More information on the KVM and J2ME.

Andrew Hubbs