VC++ 类型转换问题。。急。。。(编译器VS2008) U码转换解析 10

wchar_t*ANSIToUnicode(constchar*str)//1.ANSItoUnicode{intlen=0;len=strlen(str);intuni... wchar_t* ANSIToUnicode( const char* str ) // 1. ANSI to Unicode
{
int len = 0;
len = strlen(str);
int unicodeLen = ::MultiByteToWideChar( CP_ACP,
0,
str,
-1,
NULL,
0 );
wchar_t * pUnicode;
pUnicode = new wchar_t[unicodeLen+1];
memset(pUnicode,0,(unicodeLen+1)*sizeof(wchar_t));
::MultiByteToWideChar( CP_ACP,
0,
str,
-1,
(LPWSTR)pUnicode,
unicodeLen );
//rt = ( wchar_t* )pUnicode;
//delete pUnicode;

return pUnicode;
}

char* UnicodeToANSI( const wchar_t* str ) // 2. Unicode to ANSI
{
char* pElementText;
int iTextLen;
// wide char to multi char
iTextLen = WideCharToMultiByte( CP_ACP,
0,
str,
-1,
NULL,
0,
NULL,
NULL );
pElementText = new char[iTextLen + 1];
memset( ( void* )pElementText, 0, sizeof( char ) * ( iTextLen + 1 ) );
::WideCharToMultiByte( CP_ACP,
0,
str,
-1,
pElementText,
iTextLen,
NULL,
NULL );
//string strText;
//strText = pElementText;
//delete[] pElementText;
return pElementText;
}

请问这段代码 是类型转换。。
看不太懂 我如何用呢 。。
请解析 谢谢了·········

我的代码是。。这个 需要类型转换 如果用他的格式转换呢。

void CTestDlg::OnBnClickedCadd()
{
// TODO: 在此添加控件通知处理程序代码
int num1, num2, num3;
char ch1[10], ch2[10], ch3[10];

GetDlgItem(IDC_EDIT1)->GetWindowText(ch1,10);
GetDlgItem(IDC_EDIT1)->GetWindowText(ch2,10);

num1 = atoi(ch1);
num2 = atoi(ch2);
num3 = num1 + num2;

itoa(num3,ch3,10);
GetDlgItem(IDC_EDIT3)->SetWindowText(ch3);

}
error C2664: “int CWnd::GetWindowTextW(LPTSTR,int) const”: 不能将参数 1 从“char [10]”转换为“LPTSTR”
1> 与指向的类型无关;转换要求 reinterpret_cast、C 样式转换或函数样式转换
展开
 我来答
手机用户59964
2011-03-05 · 超过34用户采纳过TA的回答
知道答主
回答量:148
采纳率:0%
帮助的人:0
展开全部
.升级到2008效果一样了就
VC++6.0稳定是稳定.不过也算有些年头了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式