- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Interface
In Java, an interface is a reference type that defines a set of abstract methods and constants. Here's an overview of interfaces:
Definition:
- An interface is declared using the interface keyword, similar to a class declaration.
- It contains method signatures (without method bodies) and constant declarations.
- Example:
interface Animal {
void makeSound(); // Abstract method
int LEGS = 4; // Constant
}
Abstract Methods:
- Interfaces can have abstract methods, which are methods without a body.
- Classes implementing the interface must provide concrete implementations for all abstract methods.
- Example:
interface Animal {
void makeSound();
}
Constants:
- Interfaces can also contain constants, which are implicitly public, static, and final.
- Constants can be accessed using the interface name.
- Example:
interface Animal {
int LEGS = 4;
}
Implementing Interfaces:
- Classes implement interfaces using the implements keyword.
- A class can implement multiple interfaces.
- Example:
class Dog implements Animal {
public void makeSound() {
System.out.println("Woof");
}
}
Default Methods (Java 8 and later):
- Interfaces can have default methods with a default implementation.
- Default methods allow adding new functionality to existing interfaces without breaking backward compatibility.
- Example:
interface Animal {
default void sleep() {
System.out.println("Animal is sleeping");
}
}
Summary
Interfaces provide a way to achieve abstraction and define contracts for classes to implement. They play a crucial role in achieving loose coupling and promoting code reusability in Java applications.