VS2010 CString转为char的方法

VS2010 CString转为char的方法  

测试环境:WIN7 64位,VS2010的WIN32控制台下

包涵头文件

#include <iostream> #include <stdio.h> #include <afx.h>

工程属性设置为:
  
  
VS2010 CString转为char的方法 - 周勇 - 周勇的博客
 
封装函数:

函数功能:将多字节字符转为单字符型

参数1:[in][out] pDest 指向目标地址指针,即转换后存放的地址

参数2:[in] pSource 引用原CString对象

int My_WcharToChar(char* pDest,CString& pSource) {  wchar_t* pawstr = NULL;  pawstr = pSource.GetBuffer(pSource.GetLength()+1);  wcstombs(pDest,pawstr,pSource.GetLength()+1);  return TRUE;  }

 
 

 

完整测试代码:

 

#include <iostream> #include <stdio.h> #include <afx.h> using namespace std; int My_WcharToChar(char* pDest,CString& pSource);

int main() {

 CString str = _T("WINDOWS7");  char pChar[200];  My_WcharToChar(pChar,str);  cout <<"pChar = "<<pChar<<endl; 

 return TRUE;  }

int My_WcharToChar(char* pDest,CString& pSource) {  wchar_t* pawstr = NULL;  pawstr = pSource.GetBuffer(pSource.GetLength()+1);  wcstombs(pDest,pawstr,pSource.GetLength()+1);  return TRUE;  }

 
 

输出结果:

VS2010 CString转为char的方法 - 周勇 - 周勇的博客

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值