I want to-->
class mainactivity extends ListActivity,MapActivity{ }
It's possible???
class mainactivity extends Any java class1,Any java Class2{ }
anyone possible??
|
|
|
you can't . java doesn't let that type of polymorphism . You must use implements for interfaces . Read this |
|||||||||||
|
|
no its not possible because in core java a class can only inherit one class . In c++ its possible to inherit more than one class. So thats why its not possible |
|||
|
|
|
No it's not possible because you can not extend more than one class but you can extend more than one interface which is not of any use here. |
|||
|
|