课程总结
- byte short int long float double char boolean
- Byte Short Integer Long Float Double Character Boolean
- int i=5 string s=i+"";
- String.valueof()
- Integer.valueof("5") i.intvalue()
- Integer.parseInt("5")
- 拆箱:Integer i=Integer.valueOf(5); int ii=i
- 装箱:int i=5; Integer ii=i;
- getTime():获取系统时间毫秒数
- setTime():根据毫秒数设置时间
- 格式:yyyy MM dd HH mm ss
- 格式化:format()
- 解析:parse()
- 获取:Calendar.getInstance()
- get()
- 根据日历字段,对指定日期进行加减:add(Calendar.YEAR,5)
- set(2017,05,05)
- Error:不可处理的异常
- Exception:可处理的异常
- RuntimeException: 运行时异常
- 非RuntimeException:编译时异常
- getMessage() 异常字符串
- toString()简短异常消息
- printStackTrace():详细异常消息
- 自定义一个类继承自Exception
- 构造方法-> super(message)
- throw
|
|