The hashCode() method of java.lang.Class class is used to get the hashCode representation of this entity. This method returns an integer value which is the hashCode.
Syntax:
public int hashCode()
Parameter: This method does not accept any parameter.
Return Value: This method returns an integer value which is the hashCode.
Below programs demonstrate the hashCode() method.
Example 1:
public class Test {
public static void main(String[] args)
throws ClassNotFoundException
{
Class c1 = Class.forName( "java.lang.String" );
System.out.println( "Class represented by c1: "
+ c1);
System.out.println( "HashCode value: "
+ c1.hashCode());
}
}
|
Output:
Class represented by c1: class java.lang.String
HashCode value: 589431969
Example 2:
public class Test {
public static void main(String[] args)
throws ClassNotFoundException
{
Class c1 = int . class ;
System.out.println( "Class represented by c1: "
+ c1);
System.out.println( "HashCode value: "
+ c1.hashCode());
}
}
|
Output:
Class represented by c1: int
HashCode value: 589431969
Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#hashCode–
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!