cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<locale>
has_facet
locale
use_facet
C++11
wbuffer_convert
C++11
wstring_convert
函数
isalnum
isalpha
C++11
isblank
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
isxdigit
tolower
toupper
标准刻面
codecvt
codecvt_base
codecvt_byname
collate
collate_byname
ctype
ctype_base
ctype_byname
messages
messages_base
messages_byname
money_base
money_get
money_put
moneypunct
moneypunct_byname
num_get
num_put
numpunct
numpunct_byname
time_base
time_get
time_get_byname
time_put
time_put_byname
参考
<locale>
use_facet
函数模板
<locale>
std::
use_facet
template <class Facet> const Facet& use_facet (const locale& loc);
访问 locale 的 facet
返回 locale
loc
的 facet
Facet
的引用。
如果 locale 中不存在该 facet,则函数抛出
bad_cast
异常。
函数
has_facet
可用于在尝试使用此函数来*使用*特定 facet 之前,检查 locale 是否具有该 facet。
参数
loc
locale
对象。
模板参数
Facet
应为*facet 类型*。
facet 类型是公开派生(直接或间接)自
locale::facet
且具有类型为
locale::id
的静态成员
id
的类型,例如标准 facet
collate
、
codecvt
、
ctype
、
messages
、
moneypunct
、
money_get
、
money_put
、
numpunct
、
num_get
、
num_put
、
time_get
和
time_put
。
返回类型
对*facet 对象*的 const 限定引用。
数据竞争
访问参数
loc
,返回的对象可用于访问*facet 对象*。
异常安全
强异常保证:
如果抛出异常,
loc
将不会发生任何更改。
另见
has_facet
检查 locale 是否具有 facet(函数模板)
locale::facet
Locale facet(public 成员类)