如何正确声明对象变量? (关于类和子类)

时间:2014-02-21 01:29:21

标签: polymorphism action

我什么时候应该使用这些?

1

Action whatever = new AbstractAction(){
    //whatever here...
};

2

AbstractAction whatever = new AbstractAction(){
    //whatever here...
};

有什么区别?标准的方法是什么?

0 个答案:

没有答案