What is Interface in Java | Java Interface #11

Опубликовано: 18 Июль 2021
на канале: Blessings Automation Hub
131
2

If a class implements multiple interfaces, or an interface extends multiple interfaces, it is known as multiple inheritance.

Why Interface:

• By interface, we can support the functionality of multiple inheritance.
• It is used to achieve 100% abstraction.


1. Java compiler adds public and abstract keywords before the interface method.

2. Interface fields are public, static and final by default- Moreover, it adds public, static and final keywords before data members.

interface printable {
int a=10;
void print();
}
interface printable {
Public static final int a=10;
Public abstract void print();
}


Смотрите видео What is Interface in Java | Java Interface #11 онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Blessings Automation Hub 18 Июль 2021, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 13 раз и оно понравилось людям.