Thursday, September 4, 2025
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
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS