Java.util.Locale.hashCode() 方法 Java.util.Locale.getVariant() 方法 Java.util.Locale.setDefault() 方法 Java.util.Locale.hashCode() 方法 package com.codingdict; import java.util.*; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = new Locale("en", "US", "WIN"); // print locale System.out.println("Locale:" + locale); // get a hash code and print it System.out.println("Language:" + locale.hashCode()); } } Java.util.Locale.getVariant() 方法 Java.util.Locale.setDefault() 方法