Does Java support multiple Inheritance?
Answers were Sorted based on User's Feedback
Answer / santhosh
As per my knowledge java does not support multiple
inheritance through interfaces.Only the people copying the
syntax and saying like that.
my view is what is there in interfaces to inherit?
Because there is nothing to inherit from interfaces,all the
methods are by default public and all the variables are
public static final by default.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / tewodros tesema
yes.actually java suports multiple inheritance
example:
class A{
int a=10;
}
class b extends A{
int b=3;
}
clss c extends b{
int c=a+b;
system.out("result"+c);
}
here calss b in herits a and clas c in herits b the it also
in herits a through b. also since java uses interfaces it
also suports multiple inheritance.
| Is This Answer Correct ? | 2 Yes | 29 No |
What is Runtime class and its purpose?
Is there any difference between synchronized methods and synchronized statements?
Why is the type for real numbers called double?
Which sorting algorithm is best in java?
What is the difference between the boolean & operator and the && operator in java programming?
What is an abstract class and what is it’s purpose?
Why are the destructors for base class and derived class called in reverse order when the program exits
what is multitherading
What are the three parts of a lambda expression?
What's the default access specifier for variables and methods of a class?
Write a java program to count the number of words present in a string?
What do you mean by ordered and sorted in collections in java?