Java / Collections
What is predicate in Java 8?
In Java 8, Predicate a functional interface used as the assignment target for a lambda expression or method reference.
You may use them anywhere where you need to evaluate a condition on group/collection of similar objects such that evaluation can result either in true or false.
public static void main(String[] args) { List<Integer> intList = new ArrayList<Integer>(); intList.add(1); intList.add(2); intList.add(3); intList.add(4); intList.add(5); intList.add(6); intList.forEach(i -> { System.out.println(i); }); // Filter elements that has value greater than 4 Predicate<Integer> filter = i -> i > 4; intList.removeIf(filter); System.out.println("After applying removeIf function"); intList.forEach(i -> { System.out.println(i); }); } }
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
