2018年01月12日
《その232》 to_string関数,string型文字列の連結 & p.297演習8-5
to_string関数
#include <string> / 値を string に変換します。
string to_string(int Val);
string to_string(unsigned int Val);
string to_string(long Val);
string to_string(unsigned long Val);
string to_string(long long Val);
string to_string(unsigned long long Val);
string to_string(float Val);
string to_string(double Val);
string to_string(long double Val);
string型文字列の連結
string s1 = "abcd";
string s2 = "efgh";
string s3 = s1 + s2; // s3 は "abcdefgh" になります。
今回の演習問題の解答では、例えば
string型文字列 "オーバフロー(値は"
int型整数 v( v = 25 とします。)
string型文字列 ")"
を連結して、
"オーバフロー(値は25)"
という文字列にする際に、
"オーバフロー(値は" + to_string(v) + ")";
としています。
新版明解C++中級編 p.297 演習8-5
前問 演習8-4《231》の例外クラスの仮想関数 display は、画面(標準出力ストリーム)への表示を行うため、使い勝手が悪く、利用できる局面に制限を受ける。
エラーの内容を画面に表示するのではなく、文字列を返却するように仕様変更した、次の形式の関数を作成せよ。
virtual std::string what() const;
なお、返却する文字列は、演習8-4《231》の例外クラス群で表示している文字列と同じものとすること。
// ------------------------------------
#ifndef ___Math_Exception
#define ___Math_Exception
// 【 MathException.h 】
#include <string>
// 演算例外の基底クラス
class MathException {
public:
virtual std::string what() const {
return "数値演算例外";
}
};
// 例外 ( 0 による除算 )
class DividedByZero : public MathException {
public:
std::string what() const {
return "0 による除算";
}
};
// 例外 ( 100 を超えた )
class Overflow : public MathException {
int v;
public:
Overflow(int val) : v(val) { }
int value() const { return v; }
std::string what() const {
return "オーバフロー(値は"
+ std::to_string(v) + ")";
}
};
// 例外 ( 負の値になった )
class Underflow : public MathException {
int v;
public:
Underflow(int val) : v(val) { }
int value() const { return v; }
std::string what() const {
return "アンダフロー(値は"
+ std::to_string(v) + ")";
}
};
#endif
// ------------------------------------
// ------------------------------------
// 【 MatyExceptionTest.cpp 】
#include <iostream>
#include "MathException.h"
using namespace std;
// value が 0以上 99以下であるか
int check(int value) {
if (value < 0) throw Underflow(value);
if (value > 99) throw Overflow(value);
return value;
}
// x + y を返却
int add2(int x, int y) {
return check(x + y);
}
// x - y を返却
int sub2(int x, int y) {
return check(x - y);
}
// x * y を返却
int mul2(int x, int y) {
return check(x * y);
}
// x / y を返却
int div2(int x, int y) {
if (y == 0) throw DividedByZero();
return check(x / y);
}
int main() {
int x, y;
do { cout << "xの値:"; cin >> x; }
while (x < 0 || x > 99);
do { cout << "yの値:"; cin >> y; }
while (y < 0 || y > 99);
try {
cout << "x + y = "
<< add2(x, y) << '\n';
cout << "x - y = "
<< sub2(x, y) << '\n';
cout << "x * y = "
<< mul2(x, y) << '\n';
cout << "x / y = "
<< div2(x, y) << '\n';
}
catch (const MathException& e) {
cout << "MathException を捕捉\n";
cout << e.what() << '\n';
}
cout << "プログラム終了!!\n";
}
// ------------------------------------
この記事へのコメント
コメントを書く
この記事へのトラックバックURL
https://fanblogs.jp/tb/7190525
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック