Some points here:
所在版块:社会百科 发贴时间:2003-06-02 16:53  评分:

用户信息
复制本帖HTML代码
高亮: 今天贴 X 昨天贴 X 前天贴 X 
1) You don't normally make direct use of ClassLoader, unless you wanna customize the security/access/initialization mechanism of the default class loaders provided.

2) To use java.lang.Class to load a class, simple do this:
try {
Class cls = Class.forName("MyClass");
Object obj = cls.newInstance();
} catch (....) {
}
//There is a long list of possible exceptions here. Check JDK API doc for the list.
.
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!

Flying @way 吳穎暉
 相关帖子 我要回复↙ ↗回到正文
JAVA problem 百及子   (428 bytes , 495reads )
Some points here: Flying   (403 bytes , 253reads )
终於盼到希望了 百及子   (150 bytes , 232reads )
你是要这样吗? 我心为谁动   (1007 bytes , 241reads )
No, not necessary. Flying   (82 bytes , 189reads )
flying再来 百及子   (159 bytes , 195reads )
另一个办法, 有前提的 我心为谁动   (393 bytes , 257reads )