Pregunta de entrevista de Goldman Sachs

How to inherit methods from two classes in a third class?

Respuesta de la entrevista

Anónimo

16 de dic de 2015

Iff it's Java then the only way would be through inheritance. By this I mean Super class has a method. This class is then inherited by a child class, which is then inherited by the 3rd class. This is the only way as Java doesn't support multi inheritance in classes