The Artima Developer Community
Sponsored Link

Java Buzz Forum
Count method of Java 8 Stream | Java 8 streams tutorial | Java 8 streams | Streams in Java 8

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ram N

Posts: 2777
Nickname: ramram
Registered: Jul, 2014

Ram N is Java Programmer
Count method of Java 8 Stream | Java 8 streams tutorial | Java 8 streams | Streams in Java 8 Posted: Jul 11, 2017 9:31 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Ram N.
Original Post: Count method of Java 8 Stream | Java 8 streams tutorial | Java 8 streams | Streams in Java 8
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies. 1.J2EE 2.Java 3.Spring 4.Hibernate 5.Database 6.Oracle 7.Mysql 8.Design Patterns
Latest Java Buzz Posts
Latest Java Buzz Posts by Ram N
Latest Posts From JAVA EE

Advertisement

Click here to watch in Youtube : 
https://www.youtube.com/watch?v=I88ohye-HK8&list=UUhwKlOVR041tngjerWxVccw

Product.java
class Product
{
private int id;
private String name;
private int price;

public Product(int id, String name, int price)
{
super();
this.id = id;
this.name = name;
this.price = price;
}

public int getId()
{
return id;
}

public void setId(int id)
{
this.id = id;
}

public String getName()
{
return name;
}

public void setName(String name)
{
this.name = name;
}

public int getPrice()
{
return price;
}

public void setPrice(int price)
{
this.price = price;
}

@Override
public String toString()
{
return "Product [id=" + id + ", name=" + name + ", price="
+ price + "]";
}

}
StreamDemo.java
import java.util.ArrayList;
import java.util.List;

public class StreamDemo
{
public static void main(String[] args)
{
List<Product> productList = new ArrayList<Product>();

// Adding Products
productList.add(new Product(1, "Sony mobile", 25000));
productList.add(new Product(2, "Lenovo mobile", 15000));
productList.add(new Product(3, "Nokia mobile", 10000));
productList.add(new Product(4, "Samsung mobile", 40000));

long countOfProducts = productList.stream()
.filter(p -> p.getPrice() < 20000)// Filter the product, whose price is less than 20000
.count(); // Returns the count of elements in this stream.

System.out.println("CountOfProducts = " + countOfProducts);
}

}
Output
CountOfProducts = 2

Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/StreamDemo_filter_productList_count_app.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StreamDemo_filter_productList_count_app

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/64bafbc8f43e8865b0cd21a106383d7ae583fbc8/BasicJava/StreamDemo_filter_productList_count_app/?at=master

See also:


  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Read: Count method of Java 8 Stream | Java 8 streams tutorial | Java 8 streams | Streams in Java 8

    Topic: Count method of Java 8 Stream | Java 8 streams tutorial | Java 8 streams | Streams in Java 8 Previous Topic   Next Topic Topic: Pandas/scikit-learn: get_dummies test/train sets – ValueError: shapes not aligned

    Sponsored Links



    Google
      Web Artima.com   

    Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use