SCJP试题
A. Compilation fails 编译失败
B. An exception is thrown at runtime 抛出异常在运行时
C. An instance of Forest is serialized. 森林的一个实例序列化
D. An instance of Forest and an instance of Tree are both serialized. 实例的森林和林木的实例都序列化。
Answer: ( )
请详细解释下,好吗
[ 本帖最后由 lovemm 于 2009-11-9 12:04 编辑 ]
----------------解决方案--------------------------------------------------------
A.编译失败
因为Tree是一个动态类,不能在静态的方法中new出对象
----------------解决方案--------------------------------------------------------