Skip to Content
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
Explore Skills
Cloud Computing
Microsoft Azure
Amazon Web Services (AWS)
Google Cloud
Cloud Migration
Cloud Deployment
Cloud Platforms
Data Engineering
Data Warehouse
SQL
Apache Spark
Microsoft SQL Server
MySQL
Kafka
Data Lake
Streaming & Messaging
NoSQL Databases
Relational Databases
Data Science
Pandas
R
MATLAB
SAS
D3
Power BI
Tableau
Statistics
Exploratory Data Analysis
Data Visualization
AI & ML
Generative AI
Machine Learning
Artificial Intelligence (AI)
Deep Learning
Reinforcement Learning
Natural Language Processing
TensorFlow
Scikit-Learn
Hyperparameter Tuning
MLOps
Programming Languages
Java
JavaScript
Spring
Python
Go
C#
C++
C
Swift
Rust
Functional Programming
Software Architecture
Object-Oriented
Distributed Systems
Domain-Driven Design
Architectural Patterns
IT/Ops
Kubernetes
Docker
GitHub
Terraform
Continuous Delivery
Continuous Integration
Database Administration
Computer Networking
Operating Systems
IT Certifications
Security
Network Security
Application Security
Incident Response
Zero Trust Model
Disaster Recovery
Penetration Testing / Ethical Hacking
Governance
Malware
Security Architecture
Security Engineering
Security Certifications
Design
Web Design
Graphic Design
Interaction Design
Film & Video
User Experience (UX)
Design Process
Design Tools
Business
Agile
Project Management
Product Management
Marketing
Human Resources
Finance
Team Management
Business Strategy
Digital Transformation
Organizational Leadership
Soft Skills
Professional Communication
Emotional Intelligence
Presentation Skills
Innovation
Critical Thinking
Public Speaking
Collaboration
Personal Productivity
Confidence / Motivation
Features
All features
Verifiable skills
AI Academy
Courses
Certifications
Interactive learning
Live events
Superstreams
Answers
Insights reporting
Radar Blog
Buy Courses
Plans
Sign In
Try Now
O'Reilly Platform
book
함수형 프로그래밍 with 자바
by
벤 바이디히
,
허귀영
March 2024
Beginner to intermediate
528 pages
10h 48m
Korean
Hanbit Media, Inc.
Content preview from
함수형 프로그래밍 with 자바
353
CHAPTER 10
함수형 예외 처리
10.1
10.1
자바 예외 처리 핵심 요약
자바 예외 처리 핵심 요약
일반적으로 예외는 프로그램이 실행되는 동안 일반적인 명령의 흐름을 방해하는 특별한 사
건을 말합니다. 이 개념은 자바뿐만 아니라 다양한 프로그래밍 언어에서도 찾아볼 수 있으
며, 그 역사는 리스프
lisp
1
에 기원을 두고 있습니다.
10.2
10.2
try
try
-
-
catch
catch
블록
블록
자바의
try
-
catch
블록은 자바의 핵심 메커니즘 중 하나입니다.
try
{
return doCalculation
(
input
);
}
catch
(
ArithmeticException e
)
{
this
.
log
.
error
("
Calculation failed
",
e
);
return null
;
}
이 개념은 처음 등장한 이후로 조금씩 발전해왔습니다. 여러 개의
catch
블록을 사용해야 할
필요 없이,
|
(
파이프
)
기호를 사용하여
multi
-
catch
블록
2
에서 여러 예외를 한 번에 처리할
수 있게 되었습니다.
try
{
return doCalculation
(
input
);
}
catch
(
ArithmeticException
|
IllegalArgumentException e
)
{
this
.
log
.
error
("
Calculation failed
",
e
);
return null ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial
You might also like
실무로 통하는 클린 코드
막시밀리아노 콘티에리
함수형 사고: 객체지향 개발자에서 함수형 개발자로 거듭나기
김재완, 닐 포드
러닝 Go : Go 개발자처럼 생각하는 방법
존 보드너
AI를 위한 필수 수학
할라 넬슨
Publisher Resources
ISBN: 9791169212175