Java toUpperCase() 字符串方法
-
定义和用法
toUpperCase() 方法将字符串转换为大写字母。注:toLowerCase()方法将字符串转换为小写字母。 -
语法
public String toUpperCase()
-
参数
参数 描述 没有 -
示例
将字符串转换为大写和小写字母:
尝试一下public class MyClass { public static void main(String[] args) { String txt = "Hello World"; System.out.println(txt.toUpperCase()); System.out.println(txt.toLowerCase()); } }
-
技术细节
项 描述 返回值: 一个String值,表示将新字符串转换为大写