Java Locale.hashCode()
Syntax
Locale.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use Locale.hashCode() method.
/*from ww w . jav a 2 s .co m*/
import java.util.Locale;
public class Main {
public static void main(String[] args) {
Locale locale = new Locale("en", "US", "WIN");
System.out.println("Locale:" + locale);
// get a hash code and print it
System.out.println("Language:" + locale.hashCode());
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »