- ios[meta header]
- std[meta namespace]
- basic_ios[meta class]
- function[meta id-type]
char narrow(char_type c, char def) const;
char_type
型の文字を char
型の文字に変換する。
use_facet
<
ctype
<char_type>(
getloc
()).
narrow
(c, def)
ストリームに設定されているロケールに従って、char_type
型の文字 c
を対応する char
型の文字に変換する。変換できなかった場合には def
を返す。
詳細は ctype
::
narrow
を参照。
#include <iostream>
int main()
{
const char c1 = std::wcout.narrow(L'0', '@');
const char c2 = std::wcout.narrow(L'漢', '@');
std::cout << c1 << ", " << c2 << '\n';
}
- narrow[color ff0000]
- std::wcout[link ../../iostream/wcout.md.nolink]
0, @
- C++98