티스토리 뷰
출력에는 여러 채널이 있다.
std::cout
버퍼에 담아 두었다가 출력.
std::cerr
버퍼를 통하지 않고 바로 출력을 한다.
#include<iostream>
#include<fstream>
#include<string>
#include<cmath>
using namespace std;
void last()
{
cout << "last " << endl;
cout << "Throws exception" << endl;
throw -1;
cout << "End last " << endl;
}
void thrid()
{
cout << "thrid" << endl;
last();
cout << "End thrid" << endl;
}
void second()
{
cout << "second" << endl;
try
{
thrid();
}
catch(double)
{
cerr << "Second caught int exception" << endl;
}
cout << "End second" << endl;
}
void first()
{
cout << "first" << endl;
try
{
second();
}
catch(int)
{
cerr << "first caught int exception" << endl;
}
cout << "End First" << endl;
}
int main()
{
try
{
first();
}
catch(int)
{
cerr << "main caught int exception" << endl;
}
return 0;
}
first
second
thrid
last
Throws exception
first caught int exception
End First
만일 first까지 double로 바꾸게된다면 어떻게 변할 것인가?
void second()
{
cout << "second" << endl;
try
{
thrid();
}
catch(double)
{
cerr << "Second caught int exception" << endl;
}
cout << "End second" << endl;
}
void first()
{
cout << "first" << endl;
try
{
second();
}
catch(double)
{
cerr << "first caught int exception" << endl;
}
cout << "End First" << endl;
}
first
second
thrid
last
Throws exception
main caught int exception
메인으로 넘어가 출력하게 된다.
catch(...) // catch-all handlers
{
//
}
이런식으로 작성하게 되면 모든 자료형을 받을 수 있는 catch가 완성된다.
이런식으로 throw의 자료형을 정할 수 있음.
만일 ( )을 비우게 되면 "예외를 안던지겠다"라는 선언이 되니 조심해야한다.
보통은 잘 사용하지 않는다고 한다.
void last() throw(...)
'언어 > C++' 카테고리의 다른 글
14.5 함수try / 14.6 예외처리의 위험성과 단점 (0) | 2020.05.15 |
---|---|
14.4 std::exception 소개 (0) | 2020.05.13 |
14.1 예외처리의 기본 (0) | 2020.05.13 |
13.6 템플릿을 부분적으로 특수화하기 / 13.8 멤버 함수를 한 번 더 템플릿화 하기 (0) | 2020.05.10 |
13.4 함수 템플릿 특수화 / 13.5 클래스 템플릿 특수화 (0) | 2020.05.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 공간복잡도
- 3차원 배열
- call by value
- 공용체
- 형승격
- Algorithm
- 강의
- timecomplexity
- 배열
- 파이썬
- 간접 지정
- 자료구조
- 재귀함수
- 비트필드
- 2차원 배열
- 프로그래밍
- 공부
- 1차원 배열
- 알고리즘
- 직접 지정
- call by reference
- C
- 다차원 배열
- 시간복잡도
- 구조체
- 회전리스트
- 종류
- 포인터
- inflearn
- codeit
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함