toUpperCase static method

String toUpperCase(
  1. String str
)

将字符串转换为大写

Implementation

static String toUpperCase(String str) {
  return str.toUpperCase();
}