2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++例外処理

Posted at

C++での例外処理をテストしてみた。


#include <iostream>
#include <stdexcept>


class NotAllowedException : public std::runtime_error
{
public:
    NotAllowedException(std::string const& error)
    : std::runtime_error(error){}
};

class Kid{
public:
	Kid():homeWorkDone(false){}
	bool homeWorkDone;


	void playVideoGame(){
		try{
			if(!homeWorkDone) throw NotAllowedException("Do homework first");
		}
		catch (const NotAllowedException &e){
			std::cout << e.what() << std::endl;
		}
	}
};

int main(){
	Kid kid;
	kid.playVideoGame();
	return 0;
}

std::runtime_errorをサブクラス化したクラスを作り、宿題をしないでゲームしようとすると、例外が投げられるようにしてみた。

当然これはmainの方にtryとcatchを書くこともできる。


class NotAllowedException : public std::runtime_error
{
public:
    NotAllowedException(std::string const& error)
    : std::runtime_error(error){}
};

class Kid{
public:
	Kid():homeWorkDone(false){}
	bool homeWorkDone;
	void playVideoGame(){
		if(!homeWorkDone) throw NotAllowedException("Do homework first");
	}
};

int main(){
	Kid kid;
	try{
		kid.playVideoGame();
	}
	catch (const NotAllowedException &e){
		std::cout << e.what() << std::endl;
	}
	return 0;
}

こうする事によって例外を発生する可能性のあるKidクラスのメンバ関数を使った時に、クラスを使う人に例外発生時の対処を委ねる事ができるが、まったくtry catchを書かなくてもコンパイルが通ってしまうという問題がある。try-catchなしで、例外を発生させられたら、uncaught exceptionでプログラムが止まる。

でも、このやり方だと書くの忘れそう。Swiftのように、例外処理が起こりえるところで、try-catchをかかないとコンパイルが通らないとかいうふうにできないのだろうか。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?