作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在使用 C++/CLI 将结构从 C# 转换为 C++ 之后:
public value struct SampleObject
{
LPWSTR a;
};
我想打印它的实例:
printf(sampleObject->a);
但是我得到了这个错误:
Error 1 error C2664: 'printf' : cannot convert parameter 1 from 'LPWSTR' to 'const char *'
如何将 LPWSTR 转换为 char*
?
提前致谢。
最佳答案
使用 wcstombs()
函数,位于 <stdlib.h>
.下面是如何使用它:
LPWSTR wideStr = L"Some message";
char buffer[500];
// First arg is the pointer to destination char, second arg is
// the pointer to source wchar_t, last arg is the size of char buffer
wcstombs(buffer, wideStr, 500);
printf("%s", buffer);
希望这对某人有所帮助!这个功能使我免于很多挫折。
关于c++ - 如何从 LPWSTR 转换为 'const char*',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9839972/
我是一名优秀的程序员,十分优秀!