[求助]cldc1.0与cldc1.1
public class test3 {
/** Creates a new instance of test3 */
public test3() {
test2.class.getClass().getName();
}
}
以上程序用cldc1.1编译通过,但用cldc1.0编译时报错:
找不到文件 java\lang\NoClassDefFoundError.class
test2.class.getClass().getName();
请问这是为什么