Saturday, August 22, 2009

What is an Interface in Java

Bingo, so we are going to discuss a very important topic today at Java Code Online. Interfaces has been he heart of most of the Java fundamentals and coding, mostly because there existence support Polymorphism, which is one of the four Principle of OOPS apart from Abstraction, Encapsulation and Inheritance.

Interface as the name suggests is a "Contract". Yes you read it right. It is contract between the interface provider and the interface implementer that the methods mentioned in the Interface will be implemented. Mostly Interfaces are used vis a vis Inheritance, and there is much research done before choosing one.

An Interface is like a pure abstract class, with the difference that the all the methods of the interface are abstract, so any class that implements this interface has to implement all the methods mentioned in this interface. That's the law. So actually the interface tells that which methods are to be implemented, but not that how we are going to implement. It is left for the subclasses to decide how to implement this.

One important part of Java is that it supports multiple Implementations, but not multiple Inheritance. So a subclass can implement multiple Interfaces, but cannot extend multiple classes. I will detail on this in a later post where I will tell you that if multiple Inheritance is allowed, then how it may lead to the Deadly Diamond of death. Anyhow that's a bit deviating from the main topic. Our primary concern are the Interfaces.

An example of an Interface is shown below:-

////////////////////////////////////////////

Interface JavaTest{
public static final int val = 3;

public abstract doTest();
public abstract takeResult();
}

////////////////////////////////////////////

Here in this Interface declaration file, the keywords public and abstract are not required for the methods as they are implicit. Moreover the keywords for the variable declared in the Interface are also not required as they are also implicit.

So any variable declared in an Interface is practically a constant, and all the methods which are declared in the interface have to be implemented by the first concrete subclass that implements this interface.

There is one key point regarding the Interfaces, and that is you cannot declare the methods of the Interface to be final. Remember that final methods cannot be overridden, and an abstract method is useless if we do not override it. That is the main reason that abstract and final are never used together for any method.

I hope the article was helpful in understanding the Interface in Java. Do post a comment if you liked the article. For more Java info Java Code Online is the key.

3 comments:

  1. Great blog bro, nice stuff and really cool. Anyways I would like to know about the deadly diamond of death you mentioned in your article. Hope to see more on this topic in your coming post.

    ReplyDelete
  2. I heard about the deadly diamond of death, it is regarding multiple inheritance. This is supported in C++, and that cause much problems. The best part of java is that it does not support multiple inheritance, and so avoids this deadly diamond of death.

    ReplyDelete
  3. Yes you are correct, the issue of multiple inhertitance is avoided in Java, as it leads to Deadly Diamond of Death. Actually the structure is like one class extended by two sub classes, and then both of these two subclasses extended by one single class. There is one method which is common to all the classes. This leads to a diamond like diagram, and causes much issues in the decision making of the flow of code. So it is not allowed in Java. I will detail over it in my later post.

    ReplyDelete

Note: Only a member of this blog may post a comment.