在 VC 中将 OLECHAR* 转换为 CString++?

发布于 2024-10-08 15:05:15 字数 67 浏览 2 评论 0原文

如何在 VC++ 中将 OLECHAR* 转换为 CString

How to convert OLECHAR* to CString in VC++ ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就像说晚安 2024-10-15 15:05:15

OLECHAR*BSTR 相同。您可以像这样转换为 CString (抱歉格式问题,我现在丢失了 code 图标)。

OLECHAR* 值;

BSTR (bstrValue(value));

_bstr_t tmp(bstr, FALSE); //包装BSTR

CString cs(static_cast(tmp)); //转换它

OLECHAR* is the same as BSTR. You can convert to CString like this (sorry about formatting, I have lost the code icon for now).

OLECHAR* value;

BSTR (bstrValue(value));

_bstr_t tmp(bstr, FALSE); //wrap the BSTR

CString cs(static_cast<const char*>(tmp)); //convert it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文