Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.56 KB

narrow.md

File metadata and controls

55 lines (43 loc) · 1.56 KB

narrow

  • 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

参照