Java Comparable

Java Comparable
Comparable: It is used to define the natural ordering of the objects within the class.--->method..compareTo()Comparator:(TBD) It is used to define custom sorting logic externally.method..compare() ...
0 Read More

Set in Java

Set in JavaIn Java, the set is an interface that belongs to java.util package. The Set interface extends the Collection interface. An unordered collection or list in which duplicates are not allowed i...
0 Read More

Map Interface

Map InterfaceThe map interface in Java is a structure that holds a set of key-value pairs where each key is unique and points to one value only. It is a component of the java.util package and is being...
0 Read More

mvc architecture

mvc architecture
MVC Architecture (Model-View-Controller)MVC (Model-View-Controller) is a software architectural pattern commonly used in web and application development. It separates concerns into three interconnecte...
0 Read More