該方法返回指定的char值的大寫形式。
char toUpperCase(char ch)
Here is the detail of parameters:
Primitive character type
返回指定的char值的大寫形式。
public class Test{ public static void main(String args[]){ System.out.println( Character.toUpperCase('c')); System.out.println( Character.toUpperCase('C')); } }
這將產生以下結果:
C
C