Java Language Interfaces

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Introduction

An interface is a reference type, similar to a class, which can be declared by using interface keyword. Interfaces can contain only constants, method signatures, default methods, static methods, and nested types. Method bodies exist only for default methods and static methods. Like abstract classes, Interfaces cannot be instantiated—they can only be implemented by classes or extended by other interfaces. Interface is a common way to achieve full abstraction in Java.

Syntax

  • public interface Foo { void foo(); /* any other methods */ }
  • public interface Foo1 extends Foo { void bar(); /* any other methods */ }
  • public class Foo2 implements Foo, Foo1 { /* implementation of Foo and Foo1 */ }


Got any Java Language Question?