标签:bre 字符串 sed 解析 continue 判断语句 if判断 break 数字
toUpperCase:toUpperCase() 方法将字符串小写字符转换为大写。示例:
String Str = new String("www.runoob.com"); System.out.print("返回值 :" ); System.out.println( Str.toUpperCase());
toLowerCase:toLowerCase() 方法用于将大写字符转换为小写。示例:
String Str = new String("WWW.RUNOOB.COM"); System.out.print("返回值 :" ); System.out.println( Str.toLowerCase());
字符串的大小写转换--------------------------------------------------------------------------------------------------------
break,continue:两者的作用都是控制循环结构的(所以只能用在循环体里)break是结束整个循环;continue是结束当前的单次循环。
有一个例题:
int sum = 0; public void doCheck(int number){ if (number %2 == 0){ break; }else{ for (int i = 0; i < number;i++){ sum + = i; } } } public static void main (String[] args){ Test obj= new Test(); System.out.println("Red"+obj.sum); obj.doCheck(2);} }
答案是编译失败的,因为它将break用在了if判断语句中。同样 如果continue用在其他的结构中也一样编译失败。
break continue 简述-------------------------------------------------------------------------------------------------------
parseInt:parseInt() 方法用于将字符串参数作为有符号的十进制整数进行解析。通俗点就是将字符串数字转化为Int类型的数值:如下
System.out.println(Integer.parseInt("1")); //将字符串"1" 转化为 int 类型的 1
当然其它的基本数据类型也是这样的转化如:parseShort parseDouble 等。。。。。(转换的数值必须为前面的要转换的类型)
String类型转化为基本数据类型==================================================
个人学习,内容简略。
标签:bre 字符串 sed 解析 continue 判断语句 if判断 break 数字
原文地址:https://www.cnblogs.com/2979100039-qq-con/p/13166644.html