Friday, May 22, 2026
HomeLanguagesJavaCompoundName hashCode() method in Java with Examples

CompoundName hashCode() method in Java with Examples

The hashCode() method of a javax.naming.CompoundName class is used to return the hash code of this compound name. The hash code of this compound name object is the sum of the hash codes of the “canonicalized” forms of individual components of this compound 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 CompoundName.hashCode() method:
Program 1:




// Java program to demonstrate
// CompoundName.hashCode()
  
import java.util.Properties;
import javax.naming.CompoundName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // need properties for CompoundName
        Properties props = new Properties();
        props.put("jndi.syntax.separator", ":");
        props.put("jndi.syntax.direction",
                  "left_to_right");
  
        // create compound name object
        CompoundName CompoundName1
            = new CompoundName(
                "a:b:z:y:x", props);
  
        // apply hashCode()
        int hashCode
            = CompoundName1.hashCode();
  
        // print value
        System.out.println("hashCode:"
                           + hashCode);
    }
}


Output:

hashCode:558

Program 2:




// Java program to demonstrate
// CompoundName.hashCode() method
  
import java.util.Properties;
import javax.naming.CompoundName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // need properties for CompoundName
        Properties props = new Properties();
        props.put("jndi.syntax.separator", "/");
        props.put("jndi.syntax.direction",
                  "left_to_right");
  
        // create compound name object
        CompoundName CompoundName1
            = new CompoundName(
                "c/e/d/v/a/b/z/y/x/f",
                props);
  
        // apply hashCode()
        int hashCode
            = CompoundName1.hashCode();
  
        // print value
        System.out.println("hashCode:"
                           + hashCode);
    }
}


Output:

hashCode:1078

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

RELATED ARTICLES

3 COMMENTS

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