ctype::narrow
轉換地區設定使用的型別 CharType 字元對 char 型別對應的字元在原生字元集。
char narrow(
CharType ch,
char default = '\0'
) const;
const CharType* narrow(
const CharType* first,
const CharType* last,
char default,
char* dest
) const;
參數
ch
地區設定使用的型別 Chartype 字元轉換成。default
成員函式會指派的預設值為非 char型別對應字元型別 CharType 的字元。first
對第一個字元的指標會將轉換的字元範圍內。last
對字元的指標會在要轉換的字元範圍內的最後一個字元之後。dest
對型別 char 的第一個字元的常數指標儲存在字元的轉換範圍的目的範圍的。
傳回值
第 10% 成員函式傳回對應至 CharType 型別的default 參數的 char 型別的原生字元,如果沒有對應未定義。
第二 + 成成員函式將指標傳回從 CharType型別字元轉換的原生字元的目的範圍。
備註
第 10% 成員函式會傳回 do_narrow(ch, default)。 第二 + 成成員函式會傳回 do_narrow (first、 last、 default, dest)。 只有基礎來源字元保證唯一的反影像 CharTypenarrow下。 針對這些基礎來源字元,下列不因保持: narrow ( 擴展 (c), 0) == c。
範例
// ctype_narrow.cpp
// compile with: /EHsc /W3
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc1 ( "english" );
wchar_t *str1 = L"\x0392fhello everyone";
char str2 [16];
bool result1 = (use_facet<ctype<wchar_t> > ( loc1 ).narrow
( str1, str1 + wcslen(str1), 'X', &str2[0] ) != 0); // C4996
str2[wcslen(str1)] = '\0';
wcout << str1 << endl;
cout << &str2[0] << endl;
}
需求
標題: <地區設定>
命名空間: std