Tag: abstract
-
JavaNon-access modifiers
Non-access modifiers provide the JVM with information about a class, method, or variable’s characteristics. In Java, there are seven different…
May 17, 2022
-
JavaAbstract Class & Method in Java
In Java, an abstract class is specified with the abstract keyword. Both abstract and non-abstract methods can be used (method…
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
-
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
-
JavaAbstract class vs Concrete class
Following are the important differences between an abstract class and a concrete class. Sr. No. Key Abstract Class Concrete Class…
June 11, 2022
-
JavaTreemap class in Java Collection Framework
Along with the AbstractMap Class, the TreeMap class in Java is used to implement the Map interface and NavigableMap. Depending…
August 2, 2022
-
JavaAbstractSet in Java
AbstractSet is a Java Collection Framework class that implements the Collection interface and extends the AbstractCollection class. It implements the…
September 12, 2022