标签: polymorphism action
我什么时候应该使用这些?
1
Action whatever = new AbstractAction(){ //whatever here... };
或
2
AbstractAction whatever = new AbstractAction(){ //whatever here... };
有什么区别?标准的方法是什么?