Skip to main content

Why java won't provide support for multiple inheritance?

 Why java won't provide support for multiple inheritance?

'Hi , Welcome to Java Education Point. In this post we talk about a Question.


There may be a chance of raising ambiguity problems. 

Example:



Comments

Popular posts from this blog

Tightly Encapsulated class in Java || What is Tightly Encapsulated class in Java?

 Tightly Encapsulated class in Java || What is Tightly Encapsulated class in Java? 'Hi , Welcome to  Java Education Point . In this post we talk about Tightly Encapsulated class in java. Defination of Tightly Encapsulated Class: A class is said to be tightly encapsulated if and only if every variable of that class declared as private whether the variable has getter and setter methods are not , and whether these methods declared as public or not, these checkings are not required to perform. Example of Tightly Encapsulated Class: class Account  {  private double balance; public double getBalance() {  return balance;  }  }  Which of the following classes are tightly encapsulated? Which of the following classes are tightly encapsulated?  class A {  int x=10; //not  }  class B extends A  {  private int y=20; //not  }  class C extends B {  private int z=30; //not  }  Note: if the parent class is no...