Tag: interface
-
JavaSortedMap Interface in Java
SortedMap is a collection framework interface. It guarantees that the entries are kept in ascending key order. This interface is…
September 15, 2022
-
JavaJava.lang.Class class in Java
Java includes a class called Class in the java.lang package. In a running Java application, instances of the class Class…
August 29, 2022
-
JavaInterfaces of Java Collection framework
Numerous Interfaces in the Collections framework define the fundamental characteristics of distinct collection classes. Collection Interface: The interface that all…
July 21, 2022
-
JavaInterface vs Abstract class
As we all know, abstraction refers to hiding the internal implementation of a feature and only giving the users the…
June 3, 2022
-
JavaInterface in Java
In Java, an interface is a blueprint for a class. It has abstract methods and static constants. In Java, the…
June 3, 2022