阅读量:1
在Java中,可以使用循环结构(如for循环、while循环)来遍历List,并使用System.out.println()方法输出List中的元素。下面是一种常见的遍历和输出List中元素的方式:
import java.util.List; public class Main { public static void main(String[] args) { List<String> list = List.of("元素1", "元素2", "元素3"); // 使用for循环遍历并输出List中的元素 for (String element : list) { System.out.println(element); } // 使用forEach循环遍历并输出List中的元素 list.forEach(element -> System.out.println(element)); // 使用流(Stream)遍历并输出List中的元素 list.stream().forEach(element -> System.out.println(element)); } }
上述代码中,首先创建一个List,并使用List.of()方法将元素添加到List中。然后,使用不同的循环结构(for循环、forEach循环、流)遍历并输出List中的元素。在每次遍历时,使用System.out.println()方法输出元素。