What use of intern() method in String?

Alekhya Veerendra
Alekhya Veerendra

Posted On: Dec 18, 2020

 

In Java, intern() is a native method of the String class. The String.intern () returns a reference to the equal string literal present in the string pool. The intern () method is applicable to String objects created via the 'new' keyword. When it is executed then it checks whether the String equals, this String object in the pool or not.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    HCL Java Developer Interview Questions

    What is Multithreading in Java?

    Multithreading is a programmable approach to achieve multitasking. Multithreading in Java is a process of executing multiple threads cumulatively. A thread is the smallest unit of processing which is ...

    HCL Java Developer Interview Questions

    What is Collection Framework?

    A Java collection framework is an architecture that was added to Java 1.2 version. The Collection Framework provides a well-designed set of classes and interfaces for storing and manipulating a group ...

    HCL Java Developer Interview Questions

    What are different types of Classes available in Java?

    Different types of Classes available in Java are as follows:Concrete class Abstract class Final class Static class Inner ClassConcrete class In Java, A concrete class is a type of subclas...