本帖最后由 陈迎春 于 2013-4-13 11:16 编辑
问题:
1,什么叫实例化?是指new 出一个对象的引用,这个引用就叫实例化的对象吗?
2,抽象类,接口能被实例化吗?原因是什么?
3,这里的OuterInterface是不是被实例化了呢?
代码如下:- //定义一个接口
- interface OuterInterface
- {
- }
- public class OuterClass
- {
- public OuterInterface doit()
- {
- return new OuterInterface(){//这里的OuterInterface是不是被实例化了呢?
- private int i = 0;
- public int getValue()
- {
- return i;
- }
- };
- }
- }
复制代码 |