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 | 31 |
Tags
- select
- InputStream
- 오라클
- transient
- Annotaion
- DB연동
- JDBC
- statement
- 16bit
- set
- 난수
- 자바
- 8bit
- java
- 예외처리
- Transaction
- array
- swing
- Reader
- stream
- where
- Join
- Connection
- 조회
- 상속
- Oracle
- driver
- DB
- 다이얼로그
- Serializable
Archives
- Today
- Total
목록functionallInterface (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