开发者

What is the difference between CLDC and MIDP for Java Mobile?

开发者 https://www.devze.com 2022-12-21 18:17 出处:网络
Could anyone exp开发者_JAVA百科lain what the difference is between CLDC and MIDP?Java Mobile Edition has two different components.

Could anyone exp开发者_JAVA百科lain what the difference is between CLDC and MIDP?


Java Mobile Edition has two different components.

The first, configuration, is the JVM and the core classes for running a virtual machine such as IO, collection classes, dates, strings, ext. CLDC is a configuration

The other, profile, contains classes for that are more utilities that are built on top of this, such as UI, encryption, persisting local data, ect. MIDP is a profile


J2ME technology is made up of two configurations: the Connected Limited Device Configuration(CLDC) and the Connected Device Configuration(CDC).

Connected Limited Device Configuration (CLDC) is for devices with very constrained resources, like 160-512 KB of memory, limited bandwidth connectivity and 16-bit or 32-bit processor. CLDC does not supports full featured Java virtual machine. It does not supports floating point numbers, Thread groups, Object finalization, JNI, reflection, User class loaders. Connected Device Configuration (CDC) is for devices with 2MB or more for Java platform, high bandwidth network connectivity and 32-bit processor. CDC supports a complete, full featured Java virtual machine.

0

精彩评论

暂无评论...
验证码 换一张
取 消