Java toUpperCase() 方法
toUpperCase() 方法用於將小寫字元轉換為大寫。
語法
char toUpperCase(char ch)
參數
#ch -- 要轉換的字元。
傳回值
傳回轉換後字元的大寫形式,如果有的話;否則傳回字元本身。
實例
public class Test {public static void main(String args[]) {System.out.println(Character.toUpperCase('a'));System.out.println(Character.toUpperCase('A'));}}
以上程式執行結果為:
A A