티스토리 뷰
#include<iostream>
#include<fstream>
#include<string>
#include<cmath>
using namespace std;
int main()
{
// try, catch, throw
double x;
cin >> x;
try
{
if (x < 0.0) throw std::string("Negative input");
cout << std::sqrt(x) << endl;
}
catch(std::string error_message)
{
// do something to respond
cout << error_message << endl;
}
return 0;
}
error_message는 throw에서 던져준 키워드를 사용하게 된다.
예외처리는 굉장히 엄격해서 error_message의 자료형이 맞지 않는다면 바로 어긋나게 된다.
-11
Negative input
try{
throw -1;
}
catch(int x)
{
cout << "Catch integer" << x << endl;
}
catch(std::string error_message)
{
cout << error_message << endl;
}
Catch integer-1
throw하는 타입에 맞춰서 catch가 받게 되있다.
만일, 맞는 타입이 없다면 런타임 에러가 발생하게 된다.
'언어 > C++' 카테고리의 다른 글
14.4 std::exception 소개 (0) | 2020.05.13 |
---|---|
14.2 예외처리와 스택 되감기 (0) | 2020.05.13 |
13.6 템플릿을 부분적으로 특수화하기 / 13.8 멤버 함수를 한 번 더 템플릿화 하기 (0) | 2020.05.10 |
13.4 함수 템플릿 특수화 / 13.5 클래스 템플릿 특수화 (0) | 2020.05.10 |
13.3 자료형이 아닌 템플릿 매개변수 (0) | 2020.05.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- call by reference
- 구조체
- 재귀함수
- 형승격
- inflearn
- 시간복잡도
- 자료구조
- C
- 프로그래밍
- 3차원 배열
- 포인터
- 비트필드
- Algorithm
- 2차원 배열
- 간접 지정
- 직접 지정
- call by value
- codeit
- 1차원 배열
- 파이썬
- 다차원 배열
- 공간복잡도
- 알고리즘
- 강의
- 공용체
- 배열
- 공부
- timecomplexity
- 종류
- 회전리스트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함