java打印数组_Java中打印数组内容的方式有哪些?

2022-08-15 20:29:36 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

下面是几种常见的打印方式。

方法一:使用循环打印。

public class Demo {

public static void main(String[] args) {

String[] infos = new String[] {“Java”, “Android”, “C/C ”, “Kotlin”};

StringBuffer strBuffer = new StringBuffer();

for(int i = 0; i

if(i > 0) {

strBuffer.append(“, “);

}

strBuffer.append(infos[i]);

}

System.out.println(strBuffer);

}

}

方法二:使用 Arrays.toString() 打印。

public class Demo {

public static void main(String[] args) {

String[] infos = new String[] {“Java”, “Android”, “C/C ”, “Kotlin”};

System.out.println(Arrays.toString(infos));

}

}

方法三:使用 JDK8 的 java.util.Arrays.stream() 打印。

public class Demo {

public static void main(String[] args) {

String[] infos = new String[] {“Java”, “Android”, “C/C ”, “Kotlin”};

Arrays.stream(infos).forEach(System.out::println);

}

}

方法四:使用 Arrays.deepToString() 方法打印。如果数组中有其它数组,即多维数组,也会用同样的方法深度显示。

public class Demo {

public static void main(String[] args) {

String[] infos = new String[] {“Java”, “Android”, “C/C ”, “Kotlin”};

System.out.println(Arrays.deepToString(infos));

}

}

方法五:使用 JDK 8 的 Stream.flatMap() 打印。

public class Demo {

public static void main(String[] args) {

String[] infos = new String[] {“Java”, “Android”, “C/C ”, “Kotlin”};

Arrays.stream(infos).forEach(System.out::println);

}

}

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/134269.html原文链接:https://javaforall.cn

0 人点赞