Sunday, February 1, 2026
HomeLanguagesJavaCompositeName hashCode() method in Java with Examples

CompositeName hashCode() method in Java with Examples

The hashCode() method of a javax.naming.CompositeName class is used to return the hash code of this composite name. The hash code of this composite name object is the sum of the hash codes of the “canonicalized” forms of individual components of this composite name.

Syntax:

public int hashCode()

Parameters: This method accepts nothing.

Return value: This method returns an int representing the hash code of this name.

Below programs illustrate the CompositeName.hashCode() method:
Program 1:




// Java program to demonstrate
// CompositeName.hashCode()
  
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // create composite name object
        CompositeName CompositeName1
            = new CompositeName("a/b/z/y/x");
  
        // apply hashCode()
        int hashCode = CompositeName1.hashCode();
  
        // print value
        System.out.println("hashCode:" + hashCode);
    }
}


Output:

hashCode:558

Program 2:




// Java program to demonstrate
// CompositeName.hashCode() method
  
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // create composite name object
        CompositeName CompositeName1
            = new CompositeName("c/e/d/v/a/b/z/y/x/f/j");
  
        // apply hashCode()
        int hashCode = CompositeName1.hashCode();
  
        // print value
        System.out.println("hashCode:" + hashCode);
    }
}


Output:

hashCode:1184

References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#hashCode()

RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
123 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS