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


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


字符串 toUpperCase() 方法

toUpperCase() 方法是一个String 类方法,用于将给定的字符串转换为大写。

用法:

    String String_object.toUpperCase();

这里,String_object是一个 String 对象,我们必须将其转换为大写。该方法不改变字符串;它返回大写转换后的字符串。

例:

    Input:
    str = "Welcome at IncludeHelp!"
    Function call:
    ans = str.toUpperCase()

    Output:
    ans = "WELCOME AT INCLUDEHELP!"

码:

public class Main
{
    public static void main(String[] args) {
		String str = "Welcome at IncludeHelp!";
		String ans = str.toUpperCase();
		System.out.println("str = " + str);
		System.out.println("ans = " + ans);		
    }
}

输出

str = Welcome at IncludeHelp!
ans = WELCOME AT INCLUDEHELP!


相关用法


注:本文由纯净天空筛选整理自 Java String toUpperCase() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。