此方法有两个变体。第一个变体使用给定区域设置的规则将此字符串中的所有字符转换为大写。这等效于调用 toUpperCase(Locale.getDefault())。第二个变体采用区域设置作为参数,在转换为大写时使用。示例实时演示import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Tutorialspoint.com"); System.out.print("返回值 :"); System.out.println(Str.toUpperCase()); } }输出返回值 :WELCOME TO TUTORIALSPOINT.COM