1、int转换成char:
int n = 1;
char ch = (char)(n + '0');
这样打印出来ch的值为1;
不过需要注意(因为char只有一个字节),此处的n只能是0-9之间的字符
2、char转换成Int:
char ch = '9';
intn = int(ch) - int('0');
此处ch也是‘0’至‘9’的数字字符
3 集合类到数组的转换,直接的做法就是循环遍历复制一下。
集合类有支持转换的方法,用起来更方便。、
List<Long> roomStatusIds = new ArrayList<Long>();
...
Long[] statusIds = (Long[]) roomStatusIds.toArray(new Long[roomStatusIds.size()]);
toArray也有不带参数的方法,这样放回的是Object[],但如果再将Object[]强行转换为Long[]会出错。使用toArray(T[] array)这种方式,通过泛型可以运行时再确定返回参数的类型。
4 数组转集合是这样
String[] array = new String[3];
...
List<String> list = Arrays.asList(array);
|