Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

11.10. 流转列表

		
        Stream<String> stream = Stream.of("Apple", "Banana", "Coconut");
        List<String> fruits = stream.toList();
        fruits.forEach(System.out::println);