正在加载图片...
String 类 字符串在Java中以 String类的一个实例存在 方法 说明 length 取得字符串的字符长度 equals 判断原字符串中的字符是否相等于指定字符串中的字符 toLowerCaseo 转换字符串中的英文字符为小写 toUpperCase0|转换字符串中的英文字符为大写 string text =hello System.out. println("字符串内容:"+text) System.out. println("字符串长度 text length () System. out. print1n(等于he11o?"+ text equals (hello))i System.out. print1n(转为大写:"+ text. toUpperCase())i System.out. print1n(转为小写:"+ text. toLowercase()iString类 • 字符串在Java中以String类的一个实例存在 方 法 说 明 length() 取得字符串的字符长度 equals() 判断原字符串中的字符是否相等于指定字符串中的字符 toLowerCase() 转换字符串中的英文字符为小写 toUpperCase() 转换字符串中的英文字符为大写 String text = "hello"; System.out.println("字符串内容: " + text); System.out.println("字符串长度: " + text.length()); System.out.println(“等于hello? " + text.equals("hello")); System.out.println(“转为大写: " + text.toUpperCase()); System.out.println(“转为小写: " + text.toLowerCase());
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有