在Java中,可以使用循環遍歷List中的元素并打印輸出結果。以下是一種常見的方法:
import java.util.List;
public class PrintList {
public static void main(String[] args) {
List<String> 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