名稱空間
變體
操作

std::ctype<char>::table

來自 cppreference.com
 
 
 
 
 
定義於標頭檔案 <locale>
const mask* table() const throw();
(C++11 前)
const mask* table() const noexcept;
(C++11 起)

返回在此 std::ctype<char> 例項的建構函式中提供的分類表,如果未提供,則返回 classic_table() 的副本。

[edit] 引數

(無)

[edit] 返回值

指向分類表中第一個元素的指標(該表是大小為 std::ctype<char>::table_size 的陣列)。

[edit] 示例