介绍java中类型转换的常用方法。
基本类型转换
序号 | 转换说明 |
---|---|
1 | 字符串转为int类型 |
2 | 字符串转化为double类型 |
3 | 字符串转化为float类型 |
4 | 字符串转化为long类型 |
5 | 将int类型转换为字符串 |
6 | 将double类型转换为字符串 |
7 | float类型转换为字符串 |
8 | long类型转换为字符串 |
9 | java.util.Date类型转换成long类型(日期转时间戳) |
10 | long类型转换成java.util.Date类型(时间戳转日期) |
11 | float类型转换为double类型 |
12 | double类型转换为float类型 |
13 | double类型转换为int类型 |
14 | int类型转换为double类型 |
15 | double转long类型 |
16 | long类型转换为int类型 |
17 | long类型转换为integer类型 |