Software Engineering String Pool in Java In this article, I have explained the String Pool in Java and how to implement it in Java programming. I have covered basic concepts of this topic. Also, I have explain the diagram.
Software Engineering Difference between public, private, protected and default in Java In the article, we have covered the differences between various types of access specifiers like public, private, protected and default in Java in detail.
Software Engineering Enums in Java Enum in Java is a special type of a class which can have constructors,methods, and instance variables. Enum contains a fixed set of constant. In Java, a list of predefined values can be created using enums.