일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java8
- 구글로그인
- MSA
- Spring
- SQL
- js
- oracle
- python
- spring boot
- 자바 스트림
- oauth2
- Leetcode
- LeetCode SQL
- 프로그래머스
- SQL 문제풀이
- javascript
- 자바8
- pygame
- 코틀린 클래스
- 스프링
- kotlin 클래스
- 스프링시큐리티
- 자바스크립트
- 파이게임
- 오라클
- 스프링부트 채팅서버
- springboot
- mysql
- 스프링부트
- SQL프로그래머스
Archives
- Today
- Total
목록Java (1)
웅겹살의 프로그래밍 삼매경
[java] stream API 예제
오늘은 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