如何在 C++ 中的 Visual Studio 11 中打印到控制台/日志在 Metro 应用程序中?

发布于 2025-01-01 17:32:25 字数 167 浏览 2 评论 0原文

我试图弄清楚如何在 Visual Studio 11 C++ Metro 应用程序中打印到调试器控制台/日志。我尝试了多种方法来打印到 C++ Metro 应用程序中的日志(cout、Windows.System.Diagnostics、MSDN 上的文档和 Metro 开发站点)。

如何打印到控制台?

I am attempting to figure out how to print to the debugger console/log in a Visual Studio 11 C++ Metro app. I have tried a number of methods to print to the log in a C++ Metro application (cout, Windows.System.Diagnostics, the documentation on MSDN and the Metro development site).

How do I print to the console?

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

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

发布评论

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

评论(1

和影子一齐双人舞 2025-01-08 17:32:25

OutputDebugString

将字符串发送到调试器进行显示。

某些 Windows API 可从 Metro 风格应用程序中使用,包括此函数。您可以从 Metro 风格应用程序中找到与诊断相关的其他 Windows API 函数的列表 在 Windows 开发中心

OutputDebugString:

Sends a string to the debugger for display.

Some of the Windows API is usable from a Metro style app, including this function. You can find a list of other diagnostic-related Windows API functions available from Metro style apps on the Windows Dev Center.

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