How to achieve multiple inheretence in java.I need an
example. how we achieve.
Answers were Sorted based on User's Feedback
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 |
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 |
What is java netbeans?
What is javac written?
Is string a primitive data type in java?
What is the preferred size of a component in java?
How can we serialize a jsp page.
What type of code is java?
What is java transaction service (jts)?
Is java a web technology?
What is a j2ee container?
What is the use of method save()?
i have to create an application with session.during that session a timer will be started & show the time in second upto the session expired.So that i can know how many time i in that session. Hint:-i m hinted that it will coded with javascript
What is asant?