当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Character toUpperCase()用法及代码示例


Character类toUpperCase()方法

  • toUpperCase() 方法可在java.lang包。
  • toUpperCase() 方法用于返回给定的大写字符char值。
  • toUpperCase() 方法在将小写字符表示为大写字符或将大写字符表示为大写字符时不抛出异常。

用法:

    public char toUpperCase (Char value);

参数:

  • Char value– 表示要转换的字符值。

返回值:

这个方法的返回类型是char,它返回给定字符值的大写转换。

例:

// Java program to demonstrate the example 
// of char toUpperCase (Char value) method of Character class	

public class ToUpperCaseOfCharacterClass {
    public static void main(String[] args) {
        // It returns P because the passing character is 
        // already in UpperCase
        char result1 = Character.toUpperCase('P');

        // It returns P because the passing character will
        // be converted to UpperCase by using toUpperCase()
        char result2 = Character.toUpperCase('p');

        // Display values of result1 , result2
        System.out.println("Character.toUpperCase('P'):" + result1);
        System.out.println("Character.toUpperCase('p'):" + result2);
    }
}

输出

Character.toUpperCase('P'):P
Character.toUpperCase('p'):P


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Character class toUpperCase() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。