将一个数组转化为字符串,除了调用 Arrays 中的 toString 方法外:
(arr);
还能利用 java8 中的 stream. 可以用 collector 里面的 joining 方法,或者 用 reduce 拼接字符串。
举例:
import ;
import ;
public class ForStream {
public static void main(String[] args) {
int[] arr = {1,2,3,4};
String str1 = (arr).boxed().map(i -> ()) //必须将普通数组 boxed才能 在 map 里面 toString
.collect((""));
(str1);
String str2 = (arr).boxed().map(i -> ()).reduce("", String::concat);
(str2);
String str3 = (arr).boxed().map(Object :: toString).reduce("", String::concat); // 方法引用Object::toString
(str3);
}
}
显示:1234