How to achieve multiple inheretence in java.I need an
example. how we achieve.

Answers were Sorted based on User's Feedback



How to achieve multiple inheretence in java.I need an example. how we achieve...

Answer / srikanth jakka

The mechanism of inheriting the features of more than one
base class into a single class is known as multiple
inheritance. Java does not support multiple inheritance but
the multiple inheritance can be achieved by using the
interface.In Java Multiple Inheritance can be achieved
through use of Interfaces by implementing more than one
interfaces in a class.

Is This Answer Correct ?    22 Yes 0 No

How to achieve multiple inheretence in java.I need an example. how we achieve...

Answer / sk.bilal ahmed

muliple inheritance is done with the help of interfaces
Multiple Inheritance
Class C extends A implements B
eg.,

package com.ack.learning;

import java.io.Serializable;
import java.rmi.Remote;
import java.util.Vector;
public class MultipleInheritance extends Vector
implements Remote, Serializable
{
public static void main( String[] args )
{

}
}

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More J2EE Interview Questions

is it possible to create single instance of java class per session in web application

4 Answers  


What is cmp in j2ee?

0 Answers  


What does enterprise javabeans module contain?

0 Answers  


Is java part of oracle?

0 Answers  


What is a j2ee container?

0 Answers  






Define hashtable in j2ee?

0 Answers  


How will you explain load() and get() methods?

0 Answers  


J2ee is a container centric architecture. Explain.

0 Answers  


What is web container in j2ee?

0 Answers  


What is jradiobutton in java?

0 Answers  


How is java development environment setup?

0 Answers  


Where is java used?

0 Answers  


Categories