# Java 14의 Records 클래스 소개

> Clean Markdown view of GeekNews topic #1323. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=1323](https://news.hada.io/topic?id=1323)
- GeekNews Markdown: [https://news.hada.io/topic/1323.md](https://news.hada.io/topic/1323.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2020-01-18T21:44:52+09:00
- Updated: 2020-01-18T21:44:52+09:00
- Original source: [blogs.oracle.com](https://blogs.oracle.com/javamagazine/records-come-to-java)
- Points: 7
- Comments: 2

## Topic Body

- 데이터 클래스

- 필드만 정의하면 나머지 코드를 컴파일러가 자동 생성 : toString,hashCode,equals,Getter,public constructor 등

## Comments



### Comment 952

- Author: sduck4
- Created: 2020-01-20T10:12:40+09:00
- Points: 1

Goodbye, Lombok!

### Comment 944

- Author: xguru
- Created: 2020-01-18T21:49:20+09:00
- Points: 1

Kotlin 의 data class, Scala 의 case class 등 과 거의 유사
