Can you write Java code for declaration of multiple
inheritance in Java ?
Answers were Sorted based on User's Feedback
Answer / raghu
Hi yes multiple inheritance is possible in Java through
interface.
class A extends B implements interface 1....n
interface a extends interface b.... n.
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / manjula
Multiple Inheritance is not allowed in java. Instead of
this, interfaces are used to implement multiple inheritance
concept.
syntax: interface interface_name
{
data & method declaration;
}
The interafaces in java always contain final fields and
abstract methods
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / vikas jaiswal
mainly there is no multiple inheritance in java...
but we can make our program to work like multiple inheritance and it is possible via interface..
interface is blue print of class,it is used to achieve fully abstraction and multiple inheritance in java.
java compiler adds public and abstract keyword before the interface method and public static and final keyword before data members.you can see this via decompile the class.
an interface extends another interface.
class MyClass implements MyInterface1,MyInterface2{}
OR
class MyClass extends ParentClass implements MyInterface1{}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / basavaraj
s....u can do....
i think u can do by..
writing innerclass n impementing interface...
class A extends B
{
class test2{
}
}
here, test2 is innerclass which can inherits the properies
of A as well as B...
| Is This Answer Correct ? | 5 Yes | 8 No |
What is resource bundle?
What value does read() return when it has reached the end of a file?
What is codebase in applet?
difference between apllet and interface class
What modifiers may be used with an inner class that is a member of an outer class?
Explain Object Serialization and it can be used?
Difference between new operator and class.forname().newinstance()?
What is the diffrence between a local-tx-datasource and a xa-datasource?
If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?
can a static method be overridden
Explain bind(), rebind(), unbind() and lookup() methods?
What is rmic?