如何在c++中初始化wchar_t指针变量?
我想知道如何初始化以及如何将一个 wchar_t* 变量的内容复制到另一个 wchar_t* 变量中。
wchar_t *lfFace = new wchar_t;
dc.GetTextFaceW(LF_FACESIZE,lfFace);
此示例将引发运行时错误。请更正这些错误。
谢谢
I like to know how to initialize and how to copy the contents of one wchar_t* variable into another wchar_t* variable.
wchar_t *lfFace = new wchar_t;
dc.GetTextFaceW(LF_FACESIZE,lfFace);
This sample will throw runtime error.Please correct these.
Thnks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请改用
CStringW
。像这样:Use
CStringW
instead. Like this:根据 MSDN,您将想要这样的东西:
According to MSDN, you'll want something like this: