Locale.hashCode() has the following syntax.
public int hashCode()
In the following code shows how to use Locale.hashCode() method.
//w w w.j ava 2s . 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.