优化代码

This commit is contained in:
smallchill 2018-12-28 23:09:59 +08:00
parent f559c2e349
commit d022c1bb6a

View File

@ -625,7 +625,7 @@ public class Func {
* 转换为Integer数组<br> * 转换为Integer数组<br>
* *
* @param split 分隔符 * @param split 分隔符
* @param split 被转换的值 * @param str 被转换的值
* @return 结果 * @return 结果
*/ */
public static Integer[] toIntArray(String split, String str) { public static Integer[] toIntArray(String split, String str) {
@ -641,6 +641,27 @@ public class Func {
return ints; return ints;
} }
/**
* 转换为Integer集合<br>
*
* @param str 结果被转换的值
* @return 结果
*/
public static List<Integer> toIntList(String str) {
return Arrays.asList(toIntArray(str));
}
/**
* 转换为Integer集合<br>
*
* @param split 分隔符
* @param str 被转换的值
* @return 结果
*/
public static List<Integer> toIntList(String split, String str) {
return Arrays.asList(toIntArray(split, str));
}
/** /**
* 转换为String数组<br> * 转换为String数组<br>
* *
@ -665,6 +686,27 @@ public class Func {
return str.split(split); return str.split(split);
} }
/**
* 转换为String集合<br>
*
* @param str 结果被转换的值
* @return 结果
*/
public static List<String> toStrList(String str) {
return Arrays.asList(toStrArray(str));
}
/**
* 转换为String集合<br>
*
* @param split 分隔符
* @param str 被转换的值
* @return 结果
*/
public static List<String> toStrList(String split, String str) {
return Arrays.asList(toStrArray(split, str));
}
/** /**
* long 转短字符串 62 进制 * long 转短字符串 62 进制
* *