std::ctype<char>::table
提供: cppreference.com
< cpp | locale | ctype char
ヘッダ <locale> で定義
|
||
const mask* table() const throw(); |
(C++11未満) | |
const mask* table() const noexcept; |
(C++11以上) | |
この std::ctype<char> のインスタンスのコンストラクタに提供された分類テーブルを返します。 または、何も提供されなかった場合は、 classic_table() のコピーを返します。
[編集] 引数
(なし)
[編集] 戻り値
分類テーブル (サイズ std::ctype<char>::table_size
の配列) の最初の要素へのポインタ。
[編集] 例
This section is incomplete Reason: no example |