Java String toUpperCase() 方法

实例

将字符串转换为大写和小写字母:

  1. public class Main {
  2. public static void main(String[] args) {
  3. String txt = "Hello World";
  4. System.out.println(txt.toUpperCase());
  5. System.out.println(txt.toLowerCase());
  6. }
  7. }

定义与用法

toUpperCase() 方法将字符串转换为大写字母。

注意toLowerCase() 方法将字符串转换为小写字母。


语法


参数


技术细节

返回:一个 String 值,表示转换为大写的新字符串

分类导航