主页C++ Builder 资料C++ Builder 参考手册cstdlib 标准库函数wctomb_cp
C++ Builder 串口控件
C++ Builder 编程技巧
C++ Builder 操作指南
C++ Builder 参考手册
基础知识
cfloat 浮点数
cmath 数学函数
cstdlib 标准库函数
 • atof, _ttof, _wtof
 • _atold, _ttold, _wtold
 • atoi, _ttoi, _wtoi
 • atol, _ttol, _wtol
 • _atoi64, _ttoi64, _wtoi64
 • strtod, _tcstod, wcstod
 • strtof, _tcstof, wcstof
 • strtold, _strtold, _tcstold, wcstold, _wcstold
 • strtol, _tcstol, wcstol
 • strtoll, _tcstoll, wcstoll
 • strtoul, _tcstoul, wcstoul
 • strtoull, _tcstoull, wcstoull
 • itoa, _itot, _itow
 • ltoa, _ltoa, _ltot, _ltow
 • ultoa, _ultot, _ultow
 • _i64toa, _i64tot, _i64tow
 • _ui64toa, _ui64tot, _ui64tow
 • ecvt, _ecvt
 • fcvt, _fcvt
 • gcvt, _gcvt
 • abs, labs, llabs
 • div, ldiv, lldiv
 • div_t, ldiv_t, lldiv_t
 • _rotl, _crotl, _lrotl
 • _rotr, _crotr, _lrotr
 • rand, _lrand
 • srand
 • random
 • randomize
 • mbstowcs
 • mblen
 • mbtowc
 • mbtowc_cp
 • wcstombs
 • wctomb
 • wctomb_cp
 • swab, _swab
 • _fullpath, _tfullpath, _wfullpath
 • _makepath, _tmakepath, _wmakepath
 • _splitpath, _tsplitpath, _wsplitpath
 • getenv, _tgetenv, _wgetenv
 • putenv, _putenv, _tputenv, _wputenv
 • _searchenv, _tsearchenv, _wsearchenv
 • _searchstr, _tsearchstr, _wsearchstr
 • system, _tsystem, _wsystem
 • abort
 • atexit
 • atexit_t
 • exit, _exit
 • abort_handler_s
 • ignore_handler_s
 • constraint_handler_t
 • set_constraint_handler_s
 • _argc
 • _argv, _targv, _wargv;
 • _environ, _tenviron, _wenviron
 • EXIT_SUCCESS, EXIT_FAILURE
 • _MAX_PATH, _MAX_DRIVE, _MAX_DIR, _MAX_FNAME, _MAX_EXT
 • MB_CUR_MAX
 • RAND_MAX, LRAND_MAX
System 字符串
System 日期和时间
System.Math.hpp 数学函数
其他数据类型
VCL 基础类
VCL 应用程序
Pictures 图片
Graphics 绘图
Additional 控件
System 控件
A ~ Z 字母顺序排列的目录
网友留言/技术支持
wctomb_cp - 根据指定的代码页进行宽字符转多字节字符

wctomb_cp:根据指定的代码页进行宽字符转多字节字符

 

函数原型:

int wctomb_cp(char *s, wchar_t wc, const unsigned codepage);

头文件:

#include <cstdlib>

 

命名空间:

std

 

参数:

s:指向用来存放返回多字节字符的指针
wc:宽字符
codepage: 代码页常见的代码页列表请点击这里查看

 

返回值:

写入参数 s 的多字节字符的字节数,范围 1 ~ MB_CUR_MAX

 

例子:

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  char *s = new char[MB_CUR_MAX + 1];        // 分配内存预留一个字节的结束符
  int count = std::wctomb_cp(s, L'我', 950); // 转为代码页为 950 (BIG5) 的多字节字符
  if(count>0)
   {
     s[count] = 0;                           // 字符串结束符
     Memo1->Lines->Add(AnsiStringT<950>(s)); // 显示转换结果:代码页为 950 的字符串 s
   }
  else
   {
     Memo1->Lines->Add(L"转换失败!");
   }
  delete[] s;                                // 释放多字节字符串 s 占用的内存
}

 

兼容性:

函数 \ C++ Builder 编译器 bcc32 clang32 clang64
wctomb_cp

 

相关链接:

mbstowcsmbtowcmbtowc_cpwcstombswctombwctomb_cp
字符编码之间转换字符串处理MBCS多字节字符集ANSI编码UNICODE编码

◤上一页:wctomb下一页:swab, _swab

C++ 爱好者 -- Victor Chen 的个人网站 www.cppfans.com 辽ICP备11016859号