std::ctype<char>::classic_table
提供: cppreference.com
< cpp | locale | ctype char
ヘッダ <locale> で定義
|
||
static const mask* classic_table() throw(); |
(C++11未満) | |
static const mask* classic_table() noexcept; |
(C++11以上) | |
最小限の "C" ロケールで使用される分類にマッチする分類テーブルを返します。
目次 |
[編集] 引数
(なし)
[編集] 戻り値
分類テーブル (サイズ std::ctype<char>::table_size
の配列) の最初の要素へのポインタ。
[編集] ノート
デフォルト構築された std::ctype<char> ファセットは分類のためにこのテーブルを使用します。
[編集] 例
This section is incomplete Reason: no example |