アフィリエイト広告を利用しています

広告

posted by fanblog

2017年11月14日

《その126》 numeric_limitsクラステンプレート


 numeric_limitsクラステンプレート

 numeric_limitsクラステンプレートは、例えば次のように定義されています。型T についての様々な情報が含まれています。

template <class T> class numeric_limits {
public:
static const bool is_specialized = false;
static T min() throw();
static T max() throw();
static const int digits = 0;
static const int digits10 = 0;
static const bool is_signed = false;
static const bool is_integer = false;
static const bool is_exact = false;
static const int radix = 0;
static T epsilon() throw();
static T round_error() throw();

static const int min_exponent = 0;
static const int min_exponent10 = 0;
static const int max_exponent = 0;
static const int max_exponent10 = 0;

static const bool has_infinity = false;
static const bool has_quiet_NaN = false;
static const bool has_signaling_NaN = false;
static const float_denorm_style has_denorm = denorm_absent;
static const bool has_denorm_loss = false;
static T infinity() throw();
static T quiet_NaN() throw();
static T signaling_NaN() throw();
static T denorm_min() throw();

static const bool is_iec559 = false;
static const bool is_bounded = false;
static const bool is_modulo = false;

static const bool traps = false;
static const bool tinyness_before = false;
static const float_round_style round_style = round_toward_zero;
};


 これは見本みたいなものなので、実際の使用には、実引数 bool, char, int などを与えて特殊化した、次のようなクラスが <limits>ヘッダで提供されます。


namespace std {
template <class T> class numeric_limits;
template<> class numeric_limits<bool>
template<> class numeric_limits<char>
template<> class numeric_limits<signed char>
template<> class numeric_limits<unsigned char>
template<> class numeric_limits<char16_t>
template<> class numeric_limits<char32_t>
template<> class numeric_limits<wchar_t>
template<> class numeric_limits<short>
template<> class numeric_limits<int>
template<> class numeric_limits<long>
template<> class numeric_limits<long long>
template<> class numeric_limits<unsigned short>
template<> class numeric_limits<unsigned int>
template<> class numeric_limits<unsigned long>
template<> class numeric_limits<unsigned long long>
template<> class numeric_limits<float>
template<> class numeric_limits<double>
template<> class numeric_limits<long double>;

}


 そして、それらの情報が欲しいときには、次のようにして利用します。

------------------------------
#include <iostream> // std::cout
#include <limits> // std::numeric_limits

int main () {
std::cout << std::boolalpha;
std::cout << "最小値: " << std::numeric_limits<int>::min() << '\n';
std::cout << "最大値: " << std::numeric_limits<int>::max() << '\n';
std::cout << "signed: " << std::numeric_limits<int>::is_signed << '\n';
std::cout << "ビット数: " << std::numeric_limits<int>::digits << '\n';
return 0;
}
------------------------------

d02_0006.png


------------------------------
#include <iostream> // cout
#include <limits> // numeric_limits
using namespace std;

int main()
{
cout << "◆ ビット数" << '\n';
cout << "char 型: " << numeric_limits<unsigned char>::digits << '\n';
cout << "short型: " << numeric_limits<unsigned short>::digits << '\n';
cout << "int 型: " << numeric_limits<unsigned int>::digits << '\n';
cout << "long 型: " << numeric_limits<unsigned long>::digits << '\n';
}
------------------------------

d02_0007.png


新版 明解C 入門編 (明解シリーズ)

新品価格
¥2,916から
(2017/11/10 13:13時点)

新版 明解C 中級編 (明解シリーズ)

新品価格
¥2,916から
(2017/11/10 13:14時点)





この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

※ブログオーナーが承認したコメントのみ表示されます。

この記事へのトラックバックURL
https://fanblogs.jp/tb/6967792
※ブログオーナーが承認したトラックバックのみ表示されます。

この記事へのトラックバック

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


検索
<< 2018年08月 >>
      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  
プロフィール
こうすけさんの画像
こうすけ

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


×

この広告は30日以上新しい記事の更新がないブログに表示されております。