在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()方法輸出元素。