일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- React
- 자바 영어면접
- tech interview
- 맥북 초보
- 자바 개발자
- 자바 기술면접
- 맥북 사용법
- Java tech interview
- React props
- mysql
- 생활코딩
- jsx 문법
- node.js
- 아톰에디터
- 백준 알고리즘
- 백준
- 자바 인터뷰
- 맥북 필수 앱
- react state
- 맥북 유용한 앱
- Node.js Express
- 리액트
- 자바 면접
- 맥북 팁
- react jsx
- AtomEditor
- 백준 단계별로 풀어보기
- Express middleware
- 알고리즘
- 기술면접
- Today
- Total
song.log
[자바 기술면접] 25. 직렬화, 역직렬화 본문
- 정의
직렬화 : 객체를 바이트 단위로 변환하여 저장하거나 전송하는 과정을 말합니다. 이를 통해 객체를 파일에 저장하거나 네트워크를 통해 전송할 수 있습니다.
역직렬화 : 직렬화된 바이트 데이터를 다시 객체로 변환하는 과정입니다. 이 과정에서는 객체를 생성하고, 저장된 데이터를 객체의 필드에 대입하는 과정이 수행됩니다.
자바에서는 Serializable 인터페이스를 구현하여 객체를 직렬화할 수 있습니다. 직렬화된 객체는 ObjectInputStream 클래스를 이용하여 역직렬화할 수 있습니다.
- 영어 정리 :
Serialization : The process of converting an object into a stream of bytes to make it possible to store the object in a file, send it over a network or save it in a database. It is used when we want to persist the state of an object, or transfer an object between different processes or over a network. By serializing an object, we can save its state and recreate it later when needed.
Deserialization : the reverse process of converting the stream of bytes back into the object. it allows us to recreate the object from the saved state.
'StudyLog > Java interview' 카테고리의 다른 글
[자바 기술면접] 27. set 컬렉션 - HashSet, TreeSet (0) | 2023.04.30 |
---|---|
[자바 기술면접] 26. 리스트 컬렉션 - ArrayList, LinkedList, Vector (0) | 2023.04.30 |
[자바 기술면접] 24. 데몬스레드란? (0) | 2023.04.29 |
[자바 기술면접] 23. 데드락이란? (0) | 2023.04.29 |
[자바 기술면접] 22. 스레드 동기화란? (0) | 2023.04.29 |