次の方法で共有


ctype::_Do_narrow_s

A virtual function called to convert a character of type CharType used by a locale to the corresponding character of type char in the native character set.

virtual const CharType *_Do_narrow_s(
    const CharType *_First,
    const CharType *_Last,
    char _Dfault,
    char *_Dest,
    size_t _Dest_size
) const;

Parameters

  • _First
    A pointer to the first character in the range of characters to be converted.

  • _Last
    A pointer to the last character in the range of characters to be converted.

  • _Dfault
    The default value to be assigned by the member function to characters of type CharType that do not have counterpart characters of type char.

  • _Dest
    A const pointer to the first character of type char in the destination range that stores the converted range of characters.

  • _Dest_size
    The size of _Dest in bytes.

Return Value

This protected member function returns a pointer to the destination range of native characters converted from characters of type CharType.

Remarks

This protected member template function stores in _Dest [I] the value _Do_narrow_s(_First [I], _Dfault), for I in the interval [0, _Last – _First).

Example

See the example for ctype::_Narrow_s, which calls _Do_narrow_s.

Requirements

Header: <locale>

Namespace: std

See Also

Concepts

ctype Class

ctype Members

Safe Libraries: Standard C++ Library