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>
<ios>
类型
basic_ios
fpos
C++11
io_errc
ios
ios_base
streamoff
streampos
streamsize
wios
wstreampos
操纵符
boolalpha
dec
C++11
defaultfloat
fixed
hex
C++11
hexfloat
internal
left
noboolalpha
noshowbase
noshowpoint
noshowpos
noskipws
nounitbuf
nouppercase
oct
right
scientific
showbase
showpoint
showpos
skipws
unitbuf
uppercase
其他函数
C++11
iostream_category
basic_ios
basic_ios::~basic_ios
basic_ios::basic_ios
公有成员
basic_ios::bad
basic_ios::clear
basic_ios::copyfmt
basic_ios::eof
basic_ios::exceptions
basic_ios::fail
basic_ios::fill
basic_ios::good
basic_ios::imbue
basic_ios::narrow
basic_ios::operator bool
basic_ios::operator!
basic_ios::rdbuf
basic_ios::rdstate
basic_ios::setstate
basic_ios::tie
basic_ios::widen
受保护成员
basic_ios::init
C++11
basic_ios::move
C++11
basic_ios::set_rdbuf
C++11
basic_ios::swap
参考
<ios>
basic_ios
narrow
public member function
<ios> <iostream>
std::
basic_ios
::narrow
char narrow (char_type wc, char dfault) const;
窄字符
返回字符
wc
(通常是宽字符类型)转换为 `char` 类型的等效字符。
此函数返回调用流中当前“
imbued
”的
locale
对象的
ctype::narrow
facet 的结果。
参数
wc
要被“
narrowed
”的宽字符。
成员类型
char_type
是流使用的字符类型(即其第一个类模板参数
charT
)。
dfault
如果
wc
没有标准等效字符,则返回此字符。
返回值
c
的 `char` 等效字符。
数据竞争
访问流对象。
并发访问同一个流对象可能导致数据争用。
异常安全
强保证:
如果抛出异常,流不会发生任何改变。
另见
basic_ios::widen
宽化字符
(公开成员函数)
ctype::widen
转换字符(s)
(公共成员函数)