阅读量:0
在Java中,可以使用循环遍历List中的元素并打印输出结果。以下是一种常见的方法:
import java.util.List; public class PrintList { public static void main(String[] args) { List list = List.of("apple", "banana", "cherry"); // 使用for循环遍历List并打印输出结果 for(String item : list) { System.out.println(item); } } }
在这个例子中,我们首先创建一个包含字符串元素的List对象,然后使用for循环遍历List中的每个元素,并使用System.out.println()方法将每个元素打印输出到控制台。运行该程序将输出:
apple banana cherry