일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자바스크립트
- python
- 구글로그인
- js
- SQL
- java8
- 스프링
- Leetcode
- LeetCode SQL
- kotlin 클래스
- Spring
- 스프링부트
- springboot
- MSA
- 스프링시큐리티
- oracle
- spring boot
- 코틀린 클래스
- SQL 문제풀이
- 스프링부트 채팅서버
- oauth2
- javascript
- SAP ABAP
- 자바 스트림
- 오라클
- 프로그래머스
- mysql
- sap ERP
- SQL프로그래머스
- pygame
Archives
- Today
- Total
목록자바 스트림 (1)
웅겹살의 프로그래밍 삼매경

오늘은 stream API를 예제로 통해 알아보는 시간이다. 난 고기를 좋아하니까 고기종류를 예를들어 예제를 작성한다. id, title, soldOut(품절여부) public class MeatType { private Integer id; private String title; private boolean soldOut; public MeatType(Integer id, String title, boolean soldOut){ this.id = id; this.title = title; this.soldOut = soldOut; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public St..
자바(java)
2021. 1. 24. 16:27