-
String类中的常用方法
查看全部 -
Date&SimpleDateFormat
CST:
查看全部 -
基本类型不能调用
查看全部 -
基本类型&字符串转换
基本类型->字符串
int c=10;
String str=Integer.toString(c)/String.valueOf(c)/c+""
字符串->基本类型
String str="8";
int d=Integer.parseInt(str)/Integer.valueOf(str)
查看全部 -
处理异常的总结
查看全部 -
异常的简介
查看全部 -
装箱与拆箱Value..
装箱:
int i=10;//定义Int基本类型值
Integer x=new Integer(i);//手动装箱
Integer y=i;//自动装箱
拆箱:
Integer j=new Integer(9);//定义一个Integer包装类对象,值为9
int m=j.intValue();//手动拆箱为int类型
int n=j;//自动拆箱为int类型
查看全部 -
包装类&基本类型 int-Integer
包装类特性:
intValue();
static int-parseInt(String s)
String--toString()
static Integer --valueOf(String s)
查看全部 -
StringBuilder 性能高
StringBuffer 线性安全
查看全部 -
StringBuilder append()/insert(i,",")
从后往前每隔三位插入逗号
查看全部 -
s.charAt(i)=='a';
byte bt:(s.getBytes());
查看全部 -
indexOf/lastIndexOf
equals
substring()
split()
byte[] getBytes()
charAt()
查看全部 -
处理异常模式代码
查看全部 -
处理异常顺序
查看全部 -
处理异常
try-catch and try-catch-finally
查看全部
举报