+ 2
Can i inherit multiple Superclasses in one subClass in java ??
2 Answers
+ 5
You can only extend one class but if the class your extending inherits a class, then in the sub class it has access to the parent data plus the data from which parent class extended.
you can extend multiple interfaces.
+ 2
Java doesn't support multiple inheritance and i don't know for c#