Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Annotaion
- InputStream
- 상속
- stream
- DB
- 난수
- JDBC
- 자바
- 조회
- 오라클
- set
- driver
- select
- Reader
- Transaction
- swing
- DB연동
- Join
- Connection
- Oracle
- where
- statement
- java
- transient
- 예외처리
- array
- 8bit
- 다이얼로그
- Serializable
- 16bit
Archives
- Today
- Total
목록annotation (1)
오버플로
[Java] Lambda식
람다식(Lambda) - JDK 1.8에서 추가된 문법 - FunctionallInterface를 편하게 사용할 수 있는 문법 > FunctionallInterface : abstract method를 하나만 가진 인터페이스 - interface를 구현한 클래스를 작성하거나, anonymous inner class를 만들지 않고 사용할 수 있는 방법 - 문법) 인터페이스명 객체명 = (매개변수,,,) -> { 코드 } ; * interface위에 @FunctionallInterface라는 annotaion을 설정하면 해당 인터페이스는 추상 method를 반드시 하나만 가져야 함! # 오늘의 코딩 # - 람다식을 알아보쟈! 1) 매개변수가 없는 인터페이스 @FunctionalInterface // 추상me..
Java
2021. 9. 7. 22:13