strcpy有一些问题...
出现此错误:
strcpy' : cannot convert parameter 2 from 'WCHAR *' to 'const char *
这是代码......
char FunctionName[ 256 ];
UFunction *pUFunc = NULL;
strcpy( FunctionName, pUFunc->GetFullName() );
还有:
WCHAR* UObject::GetFullName ()
{
if ( this->Class && this->Outer )
{
static WCHAR ObjectName[ 256 ];
if (Outer == NULL)
{
wsprintf(ObjectName, L"");
}
else
{
if (Outer->Outer)
wsprintf(ObjectName, L"%s %s.%s.%s", Class->Name.GetName(), Outer->Outer->Name.GetName(), Outer->Name.GetName(), Name.GetName());
else if(Outer)
wsprintf(ObjectName, L"%s %s.%s", Class->Name.GetName(), Outer->Name.GetName(), Name.GetName());
}
return ObjectName;
}
return L"(null)";
}
答案 0 :(得分:8)
WCHAR项目需要wcscpy,而不是strcpy。但真正的问题是你正在尝试将宽字符串转换为窄字符串。 WideCharToMultiByte
,因为您似乎在Windows上。
答案 1 :(得分:0)
从错误中可以明显看出:strcpy期望const char*
作为第二个参数,并且您正在传递WCHAR*