[JAVA]55.람다 활용

손영민's avatar
Mar 09, 2025
[JAVA]55.람다 활용
 
package ex07.ch02; import java.util.ArrayList; import java.util.List; public class Beh03 { public static void main(String[] args) { // String s = "hello"; // System.out.println(s.startsWith("h")); List<String> words = new ArrayList<String>(); words.add("apple"); words.add("banana"); words.add("cherry"); words.removeIf(s -> s.startsWith("ch")); System.out.println(words); } }
Share article

sson17