-4
如何從類運行匿名方法。Java類泛型
例如,
我有一個類
Class A {
void Save(){
//do something
}
}
Class B {
void Save(){
//do something
}
}
當我正從某處對象:
Object something = (could be A or B both because object can accept anything.)
something.Save() //doesn't work. To solve this I could use inheritance(abstract class or Interface) but if I want to do it anonymously
像VB
object Form = SomeRandomForm
Form.Save() // anonymously no need to inherit
是否有可能在java中?