本帖最后由 王璐 于 2012-6-15 08:29 编辑
- interface A
- {
- }
- class B implements A
- {
- public String test()
- {
- return "yes";
- }
- }
- class Demo
- {
- static A get()
- {
- return new B();
- }
- public static void main(String[] args)
- {
- A a=get();
- System.out.println(a.test());
- }
- }
复制代码 一个例题,写出程序运行结果。其中static A get(){return new B();
}是什么意思? |