Saturday, May 16, 2026
HomeLanguagesJavaStringCharacterIterator hashCode() method in Java with Examples

StringCharacterIterator hashCode() method in Java with Examples

The hashCode() method of java.text.StringCharacterIterator class in Java is used to get the hashCode value of this StringCharacterIterator. This method returns an integer representing the hashCode value.

Syntax:

public int hashCode()

Parameter: This method do not accept any parameter.

Return Value: This method returns an int which is the hashCode value of this StringCharacterIterator.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class StringCharacterIteratorDemo {
    public static void main(String[] args)
    {
  
        String text = "GeeksForGeeks";
  
        StringCharacterIterator
            stringCharacterIterator
            = new StringCharacterIterator(text);
  
        System.out.println("Current Text: "
                           + text);
  
        System.out.println("HashCode value: "
                           + stringCharacterIterator
                                 .hashCode());
    }
}


Output:

Current Text: GeeksForGeeks
HashCode value: -1054991464

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/StringCharacterIterator.html#hashCode–

RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS